public static enum PaintStyle.FlipMode extends java.lang.Enum<PaintStyle.FlipMode>
| Enum Constant and Description |
|---|
NONE
not flipped/mirrored
|
X
flipped/mirrored/duplicated along the x axis
|
XY
flipped/mirrored/duplicated along the x and y axis
|
Y
flipped/mirrored/duplicated along the y axis
|
| Modifier and Type | Method and Description |
|---|---|
static PaintStyle.FlipMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaintStyle.FlipMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaintStyle.FlipMode NONE
public static final PaintStyle.FlipMode X
public static final PaintStyle.FlipMode Y
public static final PaintStyle.FlipMode XY
public static PaintStyle.FlipMode[] values()
for (PaintStyle.FlipMode c : PaintStyle.FlipMode.values()) System.out.println(c);
public static PaintStyle.FlipMode 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 nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.