Package net.troja.eve.esi.model
Enum CharacterCalendarEventResponse.OwnerTypeEnum
- java.lang.Object
-
- java.lang.Enum<CharacterCalendarEventResponse.OwnerTypeEnum>
-
- net.troja.eve.esi.model.CharacterCalendarEventResponse.OwnerTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CharacterCalendarEventResponse.OwnerTypeEnum>
- Enclosing class:
- CharacterCalendarEventResponse
public static enum CharacterCalendarEventResponse.OwnerTypeEnum extends Enum<CharacterCalendarEventResponse.OwnerTypeEnum>
owner_type string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCharacterCalendarEventResponse.OwnerTypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLIANCECHARACTERCORPORATIONEVE_SERVERFACTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CharacterCalendarEventResponse.OwnerTypeEnumfromValue(String value)StringgetValue()StringtoString()static CharacterCalendarEventResponse.OwnerTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CharacterCalendarEventResponse.OwnerTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVE_SERVER
public static final CharacterCalendarEventResponse.OwnerTypeEnum EVE_SERVER
-
CORPORATION
public static final CharacterCalendarEventResponse.OwnerTypeEnum CORPORATION
-
FACTION
public static final CharacterCalendarEventResponse.OwnerTypeEnum FACTION
-
CHARACTER
public static final CharacterCalendarEventResponse.OwnerTypeEnum CHARACTER
-
ALLIANCE
public static final CharacterCalendarEventResponse.OwnerTypeEnum ALLIANCE
-
-
Method Detail
-
values
public static CharacterCalendarEventResponse.OwnerTypeEnum[] 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 (CharacterCalendarEventResponse.OwnerTypeEnum c : CharacterCalendarEventResponse.OwnerTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CharacterCalendarEventResponse.OwnerTypeEnum 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<CharacterCalendarEventResponse.OwnerTypeEnum>
-
fromValue
public static CharacterCalendarEventResponse.OwnerTypeEnum fromValue(String value)
-
-