public static enum LMovemArgs.Ordering extends Enum<LMovemArgs.Ordering>
| Enum Constant and Description |
|---|
BULK
Move all elements in bulk, preserving their original order.
|
OBO
Move elements one by one, preserving the reversed order produced by popping one element at a time.
|
| Modifier and Type | Method and Description |
|---|---|
static LMovemArgs.Ordering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LMovemArgs.Ordering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LMovemArgs.Ordering OBO
public static final LMovemArgs.Ordering BULK
public static LMovemArgs.Ordering[] values()
for (LMovemArgs.Ordering c : LMovemArgs.Ordering.values()) System.out.println(c);
public static LMovemArgs.Ordering 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 © 2026 lettuce.io. All rights reserved.