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