public enum TiffPlanarConfigsEnum extends Enum<TiffPlanarConfigsEnum>
Storage organization.<br></br>
Possible values for PLANARCONFIG tag.
| Enum Constant and Description |
|---|
Contiguous
Single image plane.
|
Separate
Separate planes of data.
|
| Modifier and Type | Method and Description |
|---|---|
static TiffPlanarConfigsEnum |
getByValue(int value) |
int |
getValue()
Gets the value of enum.
|
static TiffPlanarConfigsEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffPlanarConfigsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffPlanarConfigsEnum Contiguous
Single image plane.
public static final TiffPlanarConfigsEnum Separate
Separate planes of data.
public static TiffPlanarConfigsEnum[] values()
for (TiffPlanarConfigsEnum c : TiffPlanarConfigsEnum.values()) System.out.println(c);
public static TiffPlanarConfigsEnum 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 int getValue()
public static TiffPlanarConfigsEnum getByValue(int value)