Package net.webpdf.wsclient.openapi
Enum OperationToolboxMoveMove.OrderEnum
- java.lang.Object
-
- java.lang.Enum<OperationToolboxMoveMove.OrderEnum>
-
- net.webpdf.wsclient.openapi.OperationToolboxMoveMove.OrderEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationToolboxMoveMove.OrderEnum>
- Enclosing class:
- OperationToolboxMoveMove
public static enum OperationToolboxMoveMove.OrderEnum extends Enum<OperationToolboxMoveMove.OrderEnum>
Used to select the order of the selected pages at the new position. * preserve = Keeps the original order in which the pages were found in the document. * reverse = Reverses the original order in which the pages were found in the document.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationToolboxMoveMove.OrderEnumfromValue(String value)StringgetValue()StringtoString()static OperationToolboxMoveMove.OrderEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationToolboxMoveMove.OrderEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRESERVE
public static final OperationToolboxMoveMove.OrderEnum PRESERVE
-
REVERSE
public static final OperationToolboxMoveMove.OrderEnum REVERSE
-
-
Method Detail
-
values
public static OperationToolboxMoveMove.OrderEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OperationToolboxMoveMove.OrderEnum c : OperationToolboxMoveMove.OrderEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationToolboxMoveMove.OrderEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationToolboxMoveMove.OrderEnum>
-
fromValue
public static OperationToolboxMoveMove.OrderEnum fromValue(String value)
-
-