public static enum ModContainer.Disableable extends java.lang.Enum<ModContainer.Disableable>
Enum Constant and Description |
---|
DEPENDENCIES |
NEVER |
RESTART |
YES |
Modifier and Type | Method and Description |
---|---|
static ModContainer.Disableable |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModContainer.Disableable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModContainer.Disableable YES
public static final ModContainer.Disableable RESTART
public static final ModContainer.Disableable NEVER
public static final ModContainer.Disableable DEPENDENCIES
public static ModContainer.Disableable[] values()
for (ModContainer.Disableable c : ModContainer.Disableable.values()) System.out.println(c);
public static ModContainer.Disableable 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