public enum SampleIntegerChoices extends java.lang.Enum<SampleIntegerChoices> implements ConfigIntegerEnum
ConfigIntegerEnum
interface. This includes two config options, an INT_ONE and an INT_TWO. Adding new options should only be APPENDED to the end of the options (not added into the middle) once you publicly release your mod (or deserialization will load the improper values and potentially cause confusion). See EaselConfigHelper
for further details.EaselConfigHelper
Modifier and Type | Method and Description |
---|---|
int |
getDefault() |
static SampleIntegerChoices |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SampleIntegerChoices[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampleIntegerChoices INT_ONE
public static final SampleIntegerChoices INT_TWO
public static SampleIntegerChoices[] values()
for (SampleIntegerChoices c : SampleIntegerChoices.values()) System.out.println(c);
public static SampleIntegerChoices 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 nullpublic int getDefault()
getDefault
in interface ConfigIntegerEnum