public enum TiffCompressionType extends Enum<TiffCompressionType>
Java class for TiffCompressionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TiffCompressionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="rle"/>
<enumeration value="deflate"/>
<enumeration value="group3"/>
<enumeration value="group4"/>
<enumeration value="jpeg"/>
<enumeration value="lzw"/>
<enumeration value="packbits"/>
<enumeration value="zlib"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEFLATE |
GROUP_3 |
GROUP_4 |
JPEG |
LZW |
NONE |
PACKBITS |
RLE |
ZLIB |
| Modifier and Type | Method and Description |
|---|---|
static TiffCompressionType |
fromValue(String v) |
String |
value() |
static TiffCompressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffCompressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffCompressionType NONE
public static final TiffCompressionType RLE
public static final TiffCompressionType DEFLATE
public static final TiffCompressionType GROUP_3
public static final TiffCompressionType GROUP_4
public static final TiffCompressionType JPEG
public static final TiffCompressionType LZW
public static final TiffCompressionType PACKBITS
public static final TiffCompressionType ZLIB
public static TiffCompressionType[] values()
for (TiffCompressionType c : TiffCompressionType.values()) System.out.println(c);
public static TiffCompressionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static TiffCompressionType fromValue(String v)
Copyright © 2017–2020 SoftVision Development GmbH, Fulda, Germany. All rights reserved.