Package net.troja.eve.esi.model
Enum MarketOrdersResponse.RangeEnum
- java.lang.Object
-
- java.lang.Enum<MarketOrdersResponse.RangeEnum>
-
- net.troja.eve.esi.model.MarketOrdersResponse.RangeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MarketOrdersResponse.RangeEnum>
- Enclosing class:
- MarketOrdersResponse
public static enum MarketOrdersResponse.RangeEnum extends Enum<MarketOrdersResponse.RangeEnum>
range string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMarketOrdersResponse.RangeEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MarketOrdersResponse.RangeEnumfromValue(String value)StringgetValue()StringtoString()static MarketOrdersResponse.RangeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MarketOrdersResponse.RangeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATION
public static final MarketOrdersResponse.RangeEnum STATION
-
REGION
public static final MarketOrdersResponse.RangeEnum REGION
-
SOLARSYSTEM
public static final MarketOrdersResponse.RangeEnum SOLARSYSTEM
-
_1
public static final MarketOrdersResponse.RangeEnum _1
-
_2
public static final MarketOrdersResponse.RangeEnum _2
-
_3
public static final MarketOrdersResponse.RangeEnum _3
-
_4
public static final MarketOrdersResponse.RangeEnum _4
-
_5
public static final MarketOrdersResponse.RangeEnum _5
-
_10
public static final MarketOrdersResponse.RangeEnum _10
-
_20
public static final MarketOrdersResponse.RangeEnum _20
-
_30
public static final MarketOrdersResponse.RangeEnum _30
-
_40
public static final MarketOrdersResponse.RangeEnum _40
-
-
Method Detail
-
values
public static MarketOrdersResponse.RangeEnum[] 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 (MarketOrdersResponse.RangeEnum c : MarketOrdersResponse.RangeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MarketOrdersResponse.RangeEnum 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<MarketOrdersResponse.RangeEnum>
-
fromValue
public static MarketOrdersResponse.RangeEnum fromValue(String value)
-
-