Package net.troja.eve.esi.model
Enum CorporationWalletJournalResponse.ContextIdTypeEnum
- java.lang.Object
-
- java.lang.Enum<CorporationWalletJournalResponse.ContextIdTypeEnum>
-
- net.troja.eve.esi.model.CorporationWalletJournalResponse.ContextIdTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CorporationWalletJournalResponse.ContextIdTypeEnum>
- Enclosing class:
- CorporationWalletJournalResponse
public static enum CorporationWalletJournalResponse.ContextIdTypeEnum extends Enum<CorporationWalletJournalResponse.ContextIdTypeEnum>
The type of the given context_id if present
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCorporationWalletJournalResponse.ContextIdTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLIANCE_IDCHARACTER_IDCONTRACT_IDCORPORATION_IDEVE_SYSTEMINDUSTRY_JOB_IDMARKET_TRANSACTION_IDPLANET_IDSTATION_IDSTRUCTURE_IDSYSTEM_IDTYPE_ID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CorporationWalletJournalResponse.ContextIdTypeEnumfromValue(String value)StringgetValue()StringtoString()static CorporationWalletJournalResponse.ContextIdTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CorporationWalletJournalResponse.ContextIdTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRUCTURE_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum STRUCTURE_ID
-
STATION_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum STATION_ID
-
MARKET_TRANSACTION_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum MARKET_TRANSACTION_ID
-
CHARACTER_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum CHARACTER_ID
-
CORPORATION_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum CORPORATION_ID
-
ALLIANCE_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum ALLIANCE_ID
-
EVE_SYSTEM
public static final CorporationWalletJournalResponse.ContextIdTypeEnum EVE_SYSTEM
-
INDUSTRY_JOB_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum INDUSTRY_JOB_ID
-
CONTRACT_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum CONTRACT_ID
-
PLANET_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum PLANET_ID
-
SYSTEM_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum SYSTEM_ID
-
TYPE_ID
public static final CorporationWalletJournalResponse.ContextIdTypeEnum TYPE_ID
-
-
Method Detail
-
values
public static CorporationWalletJournalResponse.ContextIdTypeEnum[] 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 (CorporationWalletJournalResponse.ContextIdTypeEnum c : CorporationWalletJournalResponse.ContextIdTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CorporationWalletJournalResponse.ContextIdTypeEnum 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<CorporationWalletJournalResponse.ContextIdTypeEnum>
-
fromValue
public static CorporationWalletJournalResponse.ContextIdTypeEnum fromValue(String value)
-
-