public enum EditOperationsOrder extends Enum<EditOperationsOrder>
Specifies the order of edit operations.
Enum Constant and Description |
---|
DeleteFirst
Delete operations before insert operations.
|
InsertFirst
Insert operations before delete operations.
|
Modifier and Type | Method and Description |
---|---|
static EditOperationsOrder |
getByValue(int value) |
int |
getValue() |
static EditOperationsOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EditOperationsOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditOperationsOrder InsertFirst
Insert operations before delete operations.
public static final EditOperationsOrder DeleteFirst
Delete operations before insert operations.
public static EditOperationsOrder[] values()
for (EditOperationsOrder c : EditOperationsOrder.values()) System.out.println(c);
public static EditOperationsOrder 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 nullpublic int getValue()
public static EditOperationsOrder getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.