public enum OptionalContentBaseState extends java.lang.Enum<OptionalContentBaseState>
| Enum Constant and Description |
|---|
BASE_STATE_OFF
OptionalContentGroups affected by this OptionalContentConfig should be off by default
|
BASE_STATE_ON
OptionalContentGroups affected by this OptionalContentConfig should be on by default
|
BASE_STATE_UNCHANGED
OptionalContentGroups affected by this OptionalContentConfig should remain in the same state
|
| Modifier and Type | Method and Description |
|---|---|
static OptionalContentBaseState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptionalContentBaseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionalContentBaseState BASE_STATE_OFF
public static final OptionalContentBaseState BASE_STATE_ON
public static final OptionalContentBaseState BASE_STATE_UNCHANGED
public static OptionalContentBaseState[] values()
for (OptionalContentBaseState c : OptionalContentBaseState.values()) System.out.println(c);
public static OptionalContentBaseState 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