public enum SampleStringChoices extends java.lang.Enum<SampleStringChoices> implements ConfigStringEnum
ConfigStringEnum
interface. This includes two config options, a STRING_ONE and a STRING_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
Enum Constant and Description |
---|
STRING_ONE |
STRING_TWO |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDefault() |
static SampleStringChoices |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SampleStringChoices[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampleStringChoices STRING_ONE
public static final SampleStringChoices STRING_TWO
public static SampleStringChoices[] values()
for (SampleStringChoices c : SampleStringChoices.values()) System.out.println(c);
public static SampleStringChoices 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 java.lang.String getDefault()
getDefault
in interface ConfigStringEnum