Package net.troja.eve.esi.model
Enum CorporationStarbaseResponse.FuelBayViewEnum
- java.lang.Object
-
- java.lang.Enum<CorporationStarbaseResponse.FuelBayViewEnum>
-
- net.troja.eve.esi.model.CorporationStarbaseResponse.FuelBayViewEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CorporationStarbaseResponse.FuelBayViewEnum>
- Enclosing class:
- CorporationStarbaseResponse
public static enum CorporationStarbaseResponse.FuelBayViewEnum extends Enum<CorporationStarbaseResponse.FuelBayViewEnum>
Who can view the starbase (POS)'s fule bay. Characters either need to have required role or belong to the starbase (POS) owner's corporation or alliance, as described by the enum, all other access settings follows the same scheme
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCorporationStarbaseResponse.FuelBayViewEnum.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.FuelBayViewEnumfromValue(String value)StringgetValue()StringtoString()static CorporationStarbaseResponse.FuelBayViewEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CorporationStarbaseResponse.FuelBayViewEnum[]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.FuelBayViewEnum ALLIANCE_MEMBER
-
CONFIG_STARBASE_EQUIPMENT_ROLE
public static final CorporationStarbaseResponse.FuelBayViewEnum CONFIG_STARBASE_EQUIPMENT_ROLE
-
CORPORATION_MEMBER
public static final CorporationStarbaseResponse.FuelBayViewEnum CORPORATION_MEMBER
-
STARBASE_FUEL_TECHNICIAN_ROLE
public static final CorporationStarbaseResponse.FuelBayViewEnum STARBASE_FUEL_TECHNICIAN_ROLE
-
-
Method Detail
-
values
public static CorporationStarbaseResponse.FuelBayViewEnum[] 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.FuelBayViewEnum c : CorporationStarbaseResponse.FuelBayViewEnum.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.FuelBayViewEnum 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.FuelBayViewEnum>
-
fromValue
public static CorporationStarbaseResponse.FuelBayViewEnum fromValue(String value)
-
-