Package net.webpdf.wsclient.openapi
Enum OperationViewerPreferences.DuplexEnum
- java.lang.Object
-
- java.lang.Enum<OperationViewerPreferences.DuplexEnum>
-
- net.webpdf.wsclient.openapi.OperationViewerPreferences.DuplexEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationViewerPreferences.DuplexEnum>
- Enclosing class:
- OperationViewerPreferences
public static enum OperationViewerPreferences.DuplexEnum extends Enum<OperationViewerPreferences.DuplexEnum>
Sets whether and how pages are to be printed on both sides. (This setting is only a dialog default and can be changed by the user at any time). * simplex = Print on one side. * duplexFlipLongEdge = Print on both sides and flip over the longer edge of the page. * duplexFlipShortEdge = Print on both sides and flip over the shorter side edge. * none = Use the default settings of the display program.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DUPLEXFLIPLONGEDGEDUPLEXFLIPSHORTEDGENONESIMPLEX
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationViewerPreferences.DuplexEnumfromValue(String value)StringgetValue()StringtoString()static OperationViewerPreferences.DuplexEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationViewerPreferences.DuplexEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OperationViewerPreferences.DuplexEnum NONE
-
SIMPLEX
public static final OperationViewerPreferences.DuplexEnum SIMPLEX
-
DUPLEXFLIPSHORTEDGE
public static final OperationViewerPreferences.DuplexEnum DUPLEXFLIPSHORTEDGE
-
DUPLEXFLIPLONGEDGE
public static final OperationViewerPreferences.DuplexEnum DUPLEXFLIPLONGEDGE
-
-
Method Detail
-
values
public static OperationViewerPreferences.DuplexEnum[] 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 (OperationViewerPreferences.DuplexEnum c : OperationViewerPreferences.DuplexEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationViewerPreferences.DuplexEnum 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<OperationViewerPreferences.DuplexEnum>
-
fromValue
public static OperationViewerPreferences.DuplexEnum fromValue(String value)
-
-