Package net.webpdf.wsclient.openapi
Enum OperationToolboxMoveMove.ModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationToolboxMoveMove.ModeEnum>
-
- net.webpdf.wsclient.openapi.OperationToolboxMoveMove.ModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationToolboxMoveMove.ModeEnum>
- Enclosing class:
- OperationToolboxMoveMove
public static enum OperationToolboxMoveMove.ModeEnum extends Enum<OperationToolboxMoveMove.ModeEnum>
Used to specify whether the selected page range should be inserted before or after the selected position in the document. * afterPage = After the selected position. * beforePage = Before the selected position.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTERPAGEBEFOREPAGE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationToolboxMoveMove.ModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationToolboxMoveMove.ModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationToolboxMoveMove.ModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEFOREPAGE
public static final OperationToolboxMoveMove.ModeEnum BEFOREPAGE
-
AFTERPAGE
public static final OperationToolboxMoveMove.ModeEnum AFTERPAGE
-
-
Method Detail
-
values
public static OperationToolboxMoveMove.ModeEnum[] 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.ModeEnum c : OperationToolboxMoveMove.ModeEnum.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.ModeEnum 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.ModeEnum>
-
fromValue
public static OperationToolboxMoveMove.ModeEnum fromValue(String value)
-
-