public static enum StorageChangeEvent.Level extends Enum<StorageChangeEvent.Level>
| Enum Constant and Description |
|---|
OBJECT
Enables the deserialization in
StorageChangeEvent creation process. |
STRING
Prevents the deserialization in
StorageChangeEvent creation process. |
| Modifier and Type | Method and Description |
|---|---|
static StorageChangeEvent.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageChangeEvent.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageChangeEvent.Level STRING
StorageChangeEvent creation process.public static final StorageChangeEvent.Level OBJECT
StorageChangeEvent creation process.public static StorageChangeEvent.Level[] values()
for (StorageChangeEvent.Level c : StorageChangeEvent.Level.values()) System.out.println(c);
public static StorageChangeEvent.Level 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.