@Immutable public enum ImageOrientation extends java.lang.Enum<ImageOrientation>
| Enum Constant and Description |
|---|
BOTTOM |
BOTTOM_MIRRORED |
LEFT |
LEFT_MIRRORED |
RIGHT |
RIGHT_MIRRORED |
UP |
UP_MIRRORED |
| Modifier and Type | Field and Description |
|---|---|
short |
value |
| Modifier and Type | Method and Description |
|---|---|
static ImageOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageOrientation UP
public static final ImageOrientation UP_MIRRORED
public static final ImageOrientation BOTTOM
public static final ImageOrientation BOTTOM_MIRRORED
public static final ImageOrientation LEFT_MIRRORED
public static final ImageOrientation RIGHT
public static final ImageOrientation RIGHT_MIRRORED
public static final ImageOrientation LEFT
public static ImageOrientation[] values()
for (ImageOrientation c : ImageOrientation.values()) System.out.println(c);
public static ImageOrientation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null