Package net.troja.eve.esi.model
Enum FactionWarfareSystemsResponse.ContestedEnum
- java.lang.Object
-
- java.lang.Enum<FactionWarfareSystemsResponse.ContestedEnum>
-
- net.troja.eve.esi.model.FactionWarfareSystemsResponse.ContestedEnum
-
- All Implemented Interfaces:
Serializable,Comparable<FactionWarfareSystemsResponse.ContestedEnum>
- Enclosing class:
- FactionWarfareSystemsResponse
public static enum FactionWarfareSystemsResponse.ContestedEnum extends Enum<FactionWarfareSystemsResponse.ContestedEnum>
contested string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFactionWarfareSystemsResponse.ContestedEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description CAPTUREDCONTESTEDUNCONTESTEDVULNERABLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FactionWarfareSystemsResponse.ContestedEnumfromValue(String value)StringgetValue()StringtoString()static FactionWarfareSystemsResponse.ContestedEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static FactionWarfareSystemsResponse.ContestedEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAPTURED
public static final FactionWarfareSystemsResponse.ContestedEnum CAPTURED
-
CONTESTED
public static final FactionWarfareSystemsResponse.ContestedEnum CONTESTED
-
UNCONTESTED
public static final FactionWarfareSystemsResponse.ContestedEnum UNCONTESTED
-
VULNERABLE
public static final FactionWarfareSystemsResponse.ContestedEnum VULNERABLE
-
-
Method Detail
-
values
public static FactionWarfareSystemsResponse.ContestedEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FactionWarfareSystemsResponse.ContestedEnum c : FactionWarfareSystemsResponse.ContestedEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FactionWarfareSystemsResponse.ContestedEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<FactionWarfareSystemsResponse.ContestedEnum>
-
fromValue
public static FactionWarfareSystemsResponse.ContestedEnum fromValue(String value)
-
-