Package net.troja.eve.esi.model
Enum CorporationStandingsResponse.FromTypeEnum
- java.lang.Object
-
- java.lang.Enum<CorporationStandingsResponse.FromTypeEnum>
-
- net.troja.eve.esi.model.CorporationStandingsResponse.FromTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CorporationStandingsResponse.FromTypeEnum>
- Enclosing class:
- CorporationStandingsResponse
public static enum CorporationStandingsResponse.FromTypeEnum extends Enum<CorporationStandingsResponse.FromTypeEnum>
from_type string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCorporationStandingsResponse.FromTypeEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CorporationStandingsResponse.FromTypeEnumfromValue(String value)StringgetValue()StringtoString()static CorporationStandingsResponse.FromTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CorporationStandingsResponse.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 CorporationStandingsResponse.FromTypeEnum AGENT
-
NPC_CORP
public static final CorporationStandingsResponse.FromTypeEnum NPC_CORP
-
FACTION
public static final CorporationStandingsResponse.FromTypeEnum FACTION
-
-
Method Detail
-
values
public static CorporationStandingsResponse.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 (CorporationStandingsResponse.FromTypeEnum c : CorporationStandingsResponse.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 CorporationStandingsResponse.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<CorporationStandingsResponse.FromTypeEnum>
-
fromValue
public static CorporationStandingsResponse.FromTypeEnum fromValue(String value)
-
-