public enum ListMoveOrder extends java.lang.Enum<ListMoveOrder> implements Rawable
LMOVEM and BLMOVEM commands.| Enum Constant and Description |
|---|
BULK
Move the elements as a single block (
BULK), preserving the source list's relative order
at the destination. |
OBO
Move the elements one by one (
OBO), as if each was individually popped from the source
and pushed to the destination. |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getRaw()
Get byte array.
|
static ListMoveOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListMoveOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfpublic static final ListMoveOrder OBO
OBO), as if each was individually popped from the source
and pushed to the destination.public static final ListMoveOrder BULK
BULK), preserving the source list's relative order
at the destination.public static ListMoveOrder[] values()
for (ListMoveOrder c : ListMoveOrder.values()) System.out.println(c);
public static ListMoveOrder 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 nullCopyright © 2026. All rights reserved.