public enum EnumImageRotation extends java.lang.Enum<EnumImageRotation>
| Enum Constant and Description |
|---|
NINETY
The NINETY.
|
ONE_HUNDRED_EIGHTY
The ON e_ hundre d_ eighty.
|
TWO_HUNDRED_SEVENTY
The TW o_ hundre d_ seventy.
|
ZERO
The ZERO.
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
This function returns the value of this enum.
|
static EnumImageRotation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumImageRotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumImageRotation ZERO
public static final EnumImageRotation NINETY
public static final EnumImageRotation ONE_HUNDRED_EIGHTY
public static final EnumImageRotation TWO_HUNDRED_SEVENTY
public static EnumImageRotation[] values()
for (EnumImageRotation c : EnumImageRotation.values()) System.out.println(c);
public static EnumImageRotation 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 nullpublic short getValue()