public enum AddOnOptionRestriction extends java.lang.Enum<AddOnOptionRestriction>
| Enum Constant and Description |
|---|
EDITABLE
The option is visible and editable.
|
INVISIBLE
The option is not visible and therefore not changeable.
|
READONLY
The option is visible, but not changeable.
|
| Modifier and Type | Method and Description |
|---|---|
static AddOnOptionRestriction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddOnOptionRestriction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddOnOptionRestriction INVISIBLE
public static final AddOnOptionRestriction READONLY
public static final AddOnOptionRestriction EDITABLE
public static AddOnOptionRestriction[] values()
for (AddOnOptionRestriction c : AddOnOptionRestriction.values()) System.out.println(c);
public static AddOnOptionRestriction 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