Package net.webpdf.wsclient.openapi
Enum OperationToolboxPrintPrint.ModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationToolboxPrintPrint.ModeEnum>
-
- net.webpdf.wsclient.openapi.OperationToolboxPrintPrint.ModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationToolboxPrintPrint.ModeEnum>
- Enclosing class:
- OperationToolboxPrintPrint
public static enum OperationToolboxPrintPrint.ModeEnum extends Enum<OperationToolboxPrintPrint.ModeEnum>
Select the printing mode, that shall be used. * default = The drawing operations are applied to the printout as defined in the PDF document. * image = Creates an image of a fixed resolution for every page of the document, to guarantee a uniform printing result. * raster = Every page of the document is rastered before printing. This is a compatibility mode for older printers.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationToolboxPrintPrint.ModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationToolboxPrintPrint.ModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationToolboxPrintPrint.ModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final OperationToolboxPrintPrint.ModeEnum DEFAULT
-
RASTER
public static final OperationToolboxPrintPrint.ModeEnum RASTER
-
IMAGE
public static final OperationToolboxPrintPrint.ModeEnum IMAGE
-
-
Method Detail
-
values
public static OperationToolboxPrintPrint.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 (OperationToolboxPrintPrint.ModeEnum c : OperationToolboxPrintPrint.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 OperationToolboxPrintPrint.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<OperationToolboxPrintPrint.ModeEnum>
-
fromValue
public static OperationToolboxPrintPrint.ModeEnum fromValue(String value)
-
-