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