public enum TiffResolutionUnitsEnum extends Enum<TiffResolutionUnitsEnum>
Tiff Resolution Unit Enum
Enum Constant and Description |
---|
Centimeter
Metric system.
|
Inch
English system.
|
None
No meaningful units.
|
Modifier and Type | Method and Description |
---|---|
static TiffResolutionUnitsEnum |
getByValue(int value) |
int |
getValue()
Gets the value of enum.
|
static TiffResolutionUnitsEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffResolutionUnitsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffResolutionUnitsEnum None
No meaningful units.
public static final TiffResolutionUnitsEnum Inch
English system.
public static final TiffResolutionUnitsEnum Centimeter
Metric system.
public static TiffResolutionUnitsEnum[] values()
for (TiffResolutionUnitsEnum c : TiffResolutionUnitsEnum.values()) System.out.println(c);
public static TiffResolutionUnitsEnum 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 TiffResolutionUnitsEnum getByValue(int value)