public static enum StorageChangeEvent.ChangeType extends Enum<StorageChangeEvent.ChangeType>
| Modifier and Type | Method and Description |
|---|---|
static StorageChangeEvent.ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageChangeEvent.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageChangeEvent.ChangeType CLEAR
public static final StorageChangeEvent.ChangeType PUT
public static final StorageChangeEvent.ChangeType REMOVE
public static StorageChangeEvent.ChangeType[] values()
for (StorageChangeEvent.ChangeType c : StorageChangeEvent.ChangeType.values()) System.out.println(c);
public static StorageChangeEvent.ChangeType 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 © 2018 seanchenxi.com. All rights reserved.