public enum MirrorOptions extends java.lang.Enum<MirrorOptions>
| Enum Constant and Description |
|---|
DONT_FLIP
No mirroring.
|
FLIP_X
Mirror across x-axis.
|
FLIP_XY
Mirror across x and y-axis.
|
FLIP_Y
Mirror across y-axis.
|
| Modifier and Type | Method and Description |
|---|---|
static MirrorOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MirrorOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MirrorOptions DONT_FLIP
public static final MirrorOptions FLIP_X
public static final MirrorOptions FLIP_Y
public static final MirrorOptions FLIP_XY
public static MirrorOptions[] values()
for (MirrorOptions c : MirrorOptions.values()) System.out.println(c);
public static MirrorOptions 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