public enum TechnoCoverage extends java.lang.Enum<TechnoCoverage>
Enum Constant and Description |
---|
ADSL |
AUTRE |
CABLE |
FTTH |
PIGEON |
VDSL |
VPN
Cette enum permet de de transformer toutes les techno annoncée dans les zones couvertes en une valeur.
|
WIFI |
xDSL |
Modifier and Type | Method and Description |
---|---|
static TechnoCoverage |
getFromString(java.lang.String s) |
java.lang.String |
toString() |
static TechnoCoverage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TechnoCoverage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TechnoCoverage VPN
public static final TechnoCoverage FTTH
public static final TechnoCoverage ADSL
public static final TechnoCoverage VDSL
public static final TechnoCoverage xDSL
public static final TechnoCoverage WIFI
public static final TechnoCoverage PIGEON
public static final TechnoCoverage CABLE
public static final TechnoCoverage AUTRE
public static TechnoCoverage[] values()
for (TechnoCoverage c : TechnoCoverage.values()) System.out.println(c);
public static TechnoCoverage valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<TechnoCoverage>
public static TechnoCoverage getFromString(java.lang.String s)