public enum EditableType extends Enum<EditableType>
| Enum Constant and Description |
|---|
CREATE_ONLY |
EDITABLE |
READ_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static EditableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EditableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditableType READ_ONLY
public static final EditableType CREATE_ONLY
public static final EditableType EDITABLE
public static EditableType[] values()
for (EditableType c : EditableType.values()) System.out.println(c);
public static EditableType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019 Open Circle Solutions. All rights reserved.