public enum TiffOrientationsEnum extends Enum<TiffOrientationsEnum>
Image orientation.<br></br>
Possible values for ORIENTATION tag.
Enum Constant and Description |
---|
BottomLeft
Row 0 bottom, Column 0 lhs.
|
BottomRight
Row 0 bottom, Column 0 rhs.
|
LeftBottom
Row 0 lhs, Column 0 bottom.
|
LeftTop
Row 0 lhs, Column 0 top.
|
RightBottom
Row 0 rhs, Column 0 bottom.
|
RightTop
Row 0 rhs, Column 0 top.
|
TopLeft
Row 0 top, Column 0 lhs.
|
TopRight
Row 0 top, Column 0 rhs.
|
Modifier and Type | Method and Description |
---|---|
static TiffOrientationsEnum |
getByValue(int value) |
int |
getValue()
Gets the value of enum.
|
static TiffOrientationsEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffOrientationsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffOrientationsEnum TopLeft
Row 0 top, Column 0 lhs.
public static final TiffOrientationsEnum TopRight
Row 0 top, Column 0 rhs.
public static final TiffOrientationsEnum BottomRight
Row 0 bottom, Column 0 rhs.
public static final TiffOrientationsEnum BottomLeft
Row 0 bottom, Column 0 lhs.
public static final TiffOrientationsEnum LeftTop
Row 0 lhs, Column 0 top.
public static final TiffOrientationsEnum RightTop
Row 0 rhs, Column 0 top.
public static final TiffOrientationsEnum RightBottom
Row 0 rhs, Column 0 bottom.
public static final TiffOrientationsEnum LeftBottom
Row 0 lhs, Column 0 bottom.
public static TiffOrientationsEnum[] values()
for (TiffOrientationsEnum c : TiffOrientationsEnum.values()) System.out.println(c);
public static TiffOrientationsEnum 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 TiffOrientationsEnum getByValue(int value)