Package net.troja.eve.esi.model
Enum CorporationCustomsOfficesResponse.StandingLevelEnum
- java.lang.Object
-
- java.lang.Enum<CorporationCustomsOfficesResponse.StandingLevelEnum>
-
- net.troja.eve.esi.model.CorporationCustomsOfficesResponse.StandingLevelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CorporationCustomsOfficesResponse.StandingLevelEnum>
- Enclosing class:
- CorporationCustomsOfficesResponse
public static enum CorporationCustomsOfficesResponse.StandingLevelEnum extends Enum<CorporationCustomsOfficesResponse.StandingLevelEnum>
Access is allowed only for entities with this level of standing or better
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCorporationCustomsOfficesResponse.StandingLevelEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CorporationCustomsOfficesResponse.StandingLevelEnumfromValue(String value)StringgetValue()StringtoString()static CorporationCustomsOfficesResponse.StandingLevelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CorporationCustomsOfficesResponse.StandingLevelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BAD
public static final CorporationCustomsOfficesResponse.StandingLevelEnum BAD
-
EXCELLENT
public static final CorporationCustomsOfficesResponse.StandingLevelEnum EXCELLENT
-
GOOD
public static final CorporationCustomsOfficesResponse.StandingLevelEnum GOOD
-
NEUTRAL
public static final CorporationCustomsOfficesResponse.StandingLevelEnum NEUTRAL
-
TERRIBLE
public static final CorporationCustomsOfficesResponse.StandingLevelEnum TERRIBLE
-
-
Method Detail
-
values
public static CorporationCustomsOfficesResponse.StandingLevelEnum[] 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 (CorporationCustomsOfficesResponse.StandingLevelEnum c : CorporationCustomsOfficesResponse.StandingLevelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CorporationCustomsOfficesResponse.StandingLevelEnum 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<CorporationCustomsOfficesResponse.StandingLevelEnum>
-
fromValue
public static CorporationCustomsOfficesResponse.StandingLevelEnum fromValue(String value)
-
-