Package net.webpdf.wsclient.openapi
Enum OperationTiff.CompressionEnum
- java.lang.Object
-
- java.lang.Enum<OperationTiff.CompressionEnum>
-
- net.webpdf.wsclient.openapi.OperationTiff.CompressionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationTiff.CompressionEnum>
- Enclosing class:
- OperationTiff
public static enum OperationTiff.CompressionEnum extends Enum<OperationTiff.CompressionEnum>
This parameter is used to specify the compression method when exporting pages as \"tif\" images. The following values are available: * none = No compression * rle = TIFF CCITT Modified Huffman RLE compression * deflate = TIFF Deflate lossless compression (Zip-in-TIFF). * group3 = TIFF CCITT Group 3 fax encoding * group4 = TIFF CCITT Group 4 fax encoding * jpeg = TIFF JPEG-in-TIFF compression * lzw = TIFF LZW compression * packbits = TIFF Byte-oriented run-length encoding \"PackBits\" compression * zlib = TIFF ZLib compression
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationTiff.CompressionEnumfromValue(String value)StringgetValue()StringtoString()static OperationTiff.CompressionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationTiff.CompressionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OperationTiff.CompressionEnum NONE
-
RLE
public static final OperationTiff.CompressionEnum RLE
-
DEFLATE
public static final OperationTiff.CompressionEnum DEFLATE
-
GROUP3
public static final OperationTiff.CompressionEnum GROUP3
-
GROUP4
public static final OperationTiff.CompressionEnum GROUP4
-
JPEG
public static final OperationTiff.CompressionEnum JPEG
-
LZW
public static final OperationTiff.CompressionEnum LZW
-
PACKBITS
public static final OperationTiff.CompressionEnum PACKBITS
-
ZLIB
public static final OperationTiff.CompressionEnum ZLIB
-
-
Method Detail
-
values
public static OperationTiff.CompressionEnum[] 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 (OperationTiff.CompressionEnum c : OperationTiff.CompressionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationTiff.CompressionEnum 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<OperationTiff.CompressionEnum>
-
fromValue
public static OperationTiff.CompressionEnum fromValue(String value)
-
-