public static enum ImageFlip.Action extends java.lang.Enum<ImageFlip.Action>
| Enum Constant and Description |
|---|
FLIP_180
Flip at 180 degrees.
|
FLIP_270
Flip anticlockwise at 270 degrees.
|
FLIP_90
Flip anticlockwise at 90 degrees.
|
FLIP_NONE
Reset the flip action (0 degrees).
This is the default action. |
| Modifier and Type | Method and Description |
|---|---|
static ImageFlip.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageFlip.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageFlip.Action FLIP_NONE
public static final ImageFlip.Action FLIP_90
public static final ImageFlip.Action FLIP_180
public static final ImageFlip.Action FLIP_270
public static ImageFlip.Action[] values()
for (ImageFlip.Action c : ImageFlip.Action.values()) System.out.println(c);
public static ImageFlip.Action 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