Package net.troja.eve.esi.model
Enum CharacterPlanetsResponse.PlanetTypeEnum
- java.lang.Object
-
- java.lang.Enum<CharacterPlanetsResponse.PlanetTypeEnum>
-
- net.troja.eve.esi.model.CharacterPlanetsResponse.PlanetTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CharacterPlanetsResponse.PlanetTypeEnum>
- Enclosing class:
- CharacterPlanetsResponse
public static enum CharacterPlanetsResponse.PlanetTypeEnum extends Enum<CharacterPlanetsResponse.PlanetTypeEnum>
planet_type string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCharacterPlanetsResponse.PlanetTypeEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CharacterPlanetsResponse.PlanetTypeEnumfromValue(String value)StringgetValue()StringtoString()static CharacterPlanetsResponse.PlanetTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CharacterPlanetsResponse.PlanetTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEMPERATE
public static final CharacterPlanetsResponse.PlanetTypeEnum TEMPERATE
-
BARREN
public static final CharacterPlanetsResponse.PlanetTypeEnum BARREN
-
OCEANIC
public static final CharacterPlanetsResponse.PlanetTypeEnum OCEANIC
-
ICE
public static final CharacterPlanetsResponse.PlanetTypeEnum ICE
-
GAS
public static final CharacterPlanetsResponse.PlanetTypeEnum GAS
-
LAVA
public static final CharacterPlanetsResponse.PlanetTypeEnum LAVA
-
STORM
public static final CharacterPlanetsResponse.PlanetTypeEnum STORM
-
PLASMA
public static final CharacterPlanetsResponse.PlanetTypeEnum PLASMA
-
-
Method Detail
-
values
public static CharacterPlanetsResponse.PlanetTypeEnum[] 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 (CharacterPlanetsResponse.PlanetTypeEnum c : CharacterPlanetsResponse.PlanetTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CharacterPlanetsResponse.PlanetTypeEnum 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<CharacterPlanetsResponse.PlanetTypeEnum>
-
fromValue
public static CharacterPlanetsResponse.PlanetTypeEnum fromValue(String value)
-
-