Package net.troja.eve.esi.model
Enum CharacterStandingsResponse.FromTypeEnum
- java.lang.Object
-
- java.lang.Enum<CharacterStandingsResponse.FromTypeEnum>
-
- net.troja.eve.esi.model.CharacterStandingsResponse.FromTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CharacterStandingsResponse.FromTypeEnum>
- Enclosing class:
- CharacterStandingsResponse
public static enum CharacterStandingsResponse.FromTypeEnum extends Enum<CharacterStandingsResponse.FromTypeEnum>
from_type string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCharacterStandingsResponse.FromTypeEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CharacterStandingsResponse.FromTypeEnumfromValue(String value)StringgetValue()StringtoString()static CharacterStandingsResponse.FromTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CharacterStandingsResponse.FromTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGENT
public static final CharacterStandingsResponse.FromTypeEnum AGENT
-
NPC_CORP
public static final CharacterStandingsResponse.FromTypeEnum NPC_CORP
-
FACTION
public static final CharacterStandingsResponse.FromTypeEnum FACTION
-
-
Method Detail
-
values
public static CharacterStandingsResponse.FromTypeEnum[] 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 (CharacterStandingsResponse.FromTypeEnum c : CharacterStandingsResponse.FromTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CharacterStandingsResponse.FromTypeEnum 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<CharacterStandingsResponse.FromTypeEnum>
-
fromValue
public static CharacterStandingsResponse.FromTypeEnum fromValue(String value)
-
-