public enum EnumAssemblyRecipeState extends java.lang.Enum<EnumAssemblyRecipeState>
Enum Constant and Description |
---|
POSSIBLE |
SAVED |
SAVED_ENOUGH |
SAVED_ENOUGH_ACTIVE |
Modifier and Type | Method and Description |
---|---|
static EnumAssemblyRecipeState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAssemblyRecipeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAssemblyRecipeState POSSIBLE
public static final EnumAssemblyRecipeState SAVED
public static final EnumAssemblyRecipeState SAVED_ENOUGH
public static final EnumAssemblyRecipeState SAVED_ENOUGH_ACTIVE
public static EnumAssemblyRecipeState[] values()
for (EnumAssemblyRecipeState c : EnumAssemblyRecipeState.values()) System.out.println(c);
public static EnumAssemblyRecipeState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null