Package net.webpdf.wsclient.openapi
Enum OperationToolboxRotateRotate.PageOrientationEnum
- java.lang.Object
-
- java.lang.Enum<OperationToolboxRotateRotate.PageOrientationEnum>
-
- net.webpdf.wsclient.openapi.OperationToolboxRotateRotate.PageOrientationEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationToolboxRotateRotate.PageOrientationEnum>
- Enclosing class:
- OperationToolboxRotateRotate
public static enum OperationToolboxRotateRotate.PageOrientationEnum extends Enum<OperationToolboxRotateRotate.PageOrientationEnum>
Used to select pages based on their orientation within the specified page range: * any = All pages * portrait = All pages in portrait format * landscape = All pages in landscape format
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationToolboxRotateRotate.PageOrientationEnumfromValue(String value)StringgetValue()StringtoString()static OperationToolboxRotateRotate.PageOrientationEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationToolboxRotateRotate.PageOrientationEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final OperationToolboxRotateRotate.PageOrientationEnum ANY
-
PORTRAIT
public static final OperationToolboxRotateRotate.PageOrientationEnum PORTRAIT
-
LANDSCAPE
public static final OperationToolboxRotateRotate.PageOrientationEnum LANDSCAPE
-
-
Method Detail
-
values
public static OperationToolboxRotateRotate.PageOrientationEnum[] 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 (OperationToolboxRotateRotate.PageOrientationEnum c : OperationToolboxRotateRotate.PageOrientationEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationToolboxRotateRotate.PageOrientationEnum 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<OperationToolboxRotateRotate.PageOrientationEnum>
-
fromValue
public static OperationToolboxRotateRotate.PageOrientationEnum fromValue(String value)
-
-