Package net.troja.eve.esi.model
Enum CorporationStructuresResponse.StateEnum
- java.lang.Object
-
- java.lang.Enum<CorporationStructuresResponse.StateEnum>
-
- net.troja.eve.esi.model.CorporationStructuresResponse.StateEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CorporationStructuresResponse.StateEnum>
- Enclosing class:
- CorporationStructuresResponse
public static enum CorporationStructuresResponse.StateEnum extends Enum<CorporationStructuresResponse.StateEnum>
state string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCorporationStructuresResponse.StateEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description ANCHOR_VULNERABLEANCHORINGARMOR_REINFORCEARMOR_VULNERABLEDEPLOY_VULNERABLEFITTING_INVULNERABLEHULL_REINFORCEHULL_VULNERABLEONLINE_DEPRECATEDONLINING_VULNERABLESHIELD_VULNERABLEUNANCHOREDUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CorporationStructuresResponse.StateEnumfromValue(String value)StringgetValue()StringtoString()static CorporationStructuresResponse.StateEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CorporationStructuresResponse.StateEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANCHOR_VULNERABLE
public static final CorporationStructuresResponse.StateEnum ANCHOR_VULNERABLE
-
ANCHORING
public static final CorporationStructuresResponse.StateEnum ANCHORING
-
ARMOR_REINFORCE
public static final CorporationStructuresResponse.StateEnum ARMOR_REINFORCE
-
ARMOR_VULNERABLE
public static final CorporationStructuresResponse.StateEnum ARMOR_VULNERABLE
-
DEPLOY_VULNERABLE
public static final CorporationStructuresResponse.StateEnum DEPLOY_VULNERABLE
-
FITTING_INVULNERABLE
public static final CorporationStructuresResponse.StateEnum FITTING_INVULNERABLE
-
HULL_REINFORCE
public static final CorporationStructuresResponse.StateEnum HULL_REINFORCE
-
HULL_VULNERABLE
public static final CorporationStructuresResponse.StateEnum HULL_VULNERABLE
-
ONLINE_DEPRECATED
public static final CorporationStructuresResponse.StateEnum ONLINE_DEPRECATED
-
ONLINING_VULNERABLE
public static final CorporationStructuresResponse.StateEnum ONLINING_VULNERABLE
-
SHIELD_VULNERABLE
public static final CorporationStructuresResponse.StateEnum SHIELD_VULNERABLE
-
UNANCHORED
public static final CorporationStructuresResponse.StateEnum UNANCHORED
-
UNKNOWN
public static final CorporationStructuresResponse.StateEnum UNKNOWN
-
-
Method Detail
-
values
public static CorporationStructuresResponse.StateEnum[] 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 (CorporationStructuresResponse.StateEnum c : CorporationStructuresResponse.StateEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CorporationStructuresResponse.StateEnum 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<CorporationStructuresResponse.StateEnum>
-
fromValue
public static CorporationStructuresResponse.StateEnum fromValue(String value)
-
-