public enum SampleBooleanChoices extends java.lang.Enum<SampleBooleanChoices> implements ConfigBooleanEnum
ConfigBooleanEnum
interface. This includes two config options, a BOOL_ONE and a BOOL_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 |
---|---|
boolean |
getDefault() |
static SampleBooleanChoices |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SampleBooleanChoices[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampleBooleanChoices BOOL_ONE
public static final SampleBooleanChoices BOOL_TWO
public static SampleBooleanChoices[] values()
for (SampleBooleanChoices c : SampleBooleanChoices.values()) System.out.println(c);
public static SampleBooleanChoices 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 boolean getDefault()
getDefault
in interface ConfigBooleanEnum