Package net.troja.eve.esi.model
Enum SystemCostIndice.ActivityEnum
- java.lang.Object
-
- java.lang.Enum<SystemCostIndice.ActivityEnum>
-
- net.troja.eve.esi.model.SystemCostIndice.ActivityEnum
-
- All Implemented Interfaces:
Serializable,Comparable<SystemCostIndice.ActivityEnum>
- Enclosing class:
- SystemCostIndice
public static enum SystemCostIndice.ActivityEnum extends Enum<SystemCostIndice.ActivityEnum>
activity string
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSystemCostIndice.ActivityEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description COPYINGDUPLICATINGINVENTIONMANUFACTURINGNONEREACTIONRESEARCHING_MATERIAL_EFFICIENCYRESEARCHING_TECHNOLOGYRESEARCHING_TIME_EFFICIENCYREVERSE_ENGINEERING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SystemCostIndice.ActivityEnumfromValue(String value)StringgetValue()StringtoString()static SystemCostIndice.ActivityEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static SystemCostIndice.ActivityEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COPYING
public static final SystemCostIndice.ActivityEnum COPYING
-
DUPLICATING
public static final SystemCostIndice.ActivityEnum DUPLICATING
-
INVENTION
public static final SystemCostIndice.ActivityEnum INVENTION
-
MANUFACTURING
public static final SystemCostIndice.ActivityEnum MANUFACTURING
-
NONE
public static final SystemCostIndice.ActivityEnum NONE
-
REACTION
public static final SystemCostIndice.ActivityEnum REACTION
-
RESEARCHING_MATERIAL_EFFICIENCY
public static final SystemCostIndice.ActivityEnum RESEARCHING_MATERIAL_EFFICIENCY
-
RESEARCHING_TECHNOLOGY
public static final SystemCostIndice.ActivityEnum RESEARCHING_TECHNOLOGY
-
RESEARCHING_TIME_EFFICIENCY
public static final SystemCostIndice.ActivityEnum RESEARCHING_TIME_EFFICIENCY
-
REVERSE_ENGINEERING
public static final SystemCostIndice.ActivityEnum REVERSE_ENGINEERING
-
-
Method Detail
-
values
public static SystemCostIndice.ActivityEnum[] 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 (SystemCostIndice.ActivityEnum c : SystemCostIndice.ActivityEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemCostIndice.ActivityEnum 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<SystemCostIndice.ActivityEnum>
-
fromValue
public static SystemCostIndice.ActivityEnum fromValue(String value)
-
-