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