public static enum Share.ShufflePriority extends java.lang.Enum<Share.ShufflePriority>
Enum Constant and Description |
---|
MOVE_TO_EXTENSION
allows a shuffling operation to ignore the speed hints when moving from incoming to
extension share.
|
SPEED
always respect the speed hint of a data set when moving.
|
Modifier and Type | Method and Description |
---|---|
static Share.ShufflePriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Share.ShufflePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Share.ShufflePriority SPEED
public static final Share.ShufflePriority MOVE_TO_EXTENSION
public static Share.ShufflePriority[] values()
for (Share.ShufflePriority c : Share.ShufflePriority.values()) System.out.println(c);
public static Share.ShufflePriority 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