Package net.troja.eve.esi.model
Enum CorporationStarbaseResponse.OnlineEnum
- java.lang.Object
-
- java.lang.Enum<CorporationStarbaseResponse.OnlineEnum>
-
- net.troja.eve.esi.model.CorporationStarbaseResponse.OnlineEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CorporationStarbaseResponse.OnlineEnum>
- Enclosing class:
- CorporationStarbaseResponse
public static enum CorporationStarbaseResponse.OnlineEnum extends Enum<CorporationStarbaseResponse.OnlineEnum>
Who can online starbase (POS) and its structures
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCorporationStarbaseResponse.OnlineEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLIANCE_MEMBERCONFIG_STARBASE_EQUIPMENT_ROLECORPORATION_MEMBERSTARBASE_FUEL_TECHNICIAN_ROLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CorporationStarbaseResponse.OnlineEnumfromValue(String value)StringgetValue()StringtoString()static CorporationStarbaseResponse.OnlineEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CorporationStarbaseResponse.OnlineEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALLIANCE_MEMBER
public static final CorporationStarbaseResponse.OnlineEnum ALLIANCE_MEMBER
-
CONFIG_STARBASE_EQUIPMENT_ROLE
public static final CorporationStarbaseResponse.OnlineEnum CONFIG_STARBASE_EQUIPMENT_ROLE
-
CORPORATION_MEMBER
public static final CorporationStarbaseResponse.OnlineEnum CORPORATION_MEMBER
-
STARBASE_FUEL_TECHNICIAN_ROLE
public static final CorporationStarbaseResponse.OnlineEnum STARBASE_FUEL_TECHNICIAN_ROLE
-
-
Method Detail
-
values
public static CorporationStarbaseResponse.OnlineEnum[] 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 (CorporationStarbaseResponse.OnlineEnum c : CorporationStarbaseResponse.OnlineEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CorporationStarbaseResponse.OnlineEnum 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<CorporationStarbaseResponse.OnlineEnum>
-
fromValue
public static CorporationStarbaseResponse.OnlineEnum fromValue(String value)
-
-