public enum AttributeAction extends Enum<AttributeAction>
| Enum Constant and Description |
|---|
READ_ATTRIBUTE |
REMOVE_ATTRIBUTE |
WRITE_ATTRIBUTE |
| Modifier and Type | Method and Description |
|---|---|
static AttributeAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeAction READ_ATTRIBUTE
public static final AttributeAction WRITE_ATTRIBUTE
public static final AttributeAction REMOVE_ATTRIBUTE
public static AttributeAction[] values()
for (AttributeAction c : AttributeAction.values()) System.out.println(c);
public static AttributeAction 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 © 2015 CrafterCMS. All Rights Reserved.