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