public static enum LLDWPainter.DrawingFlip extends Enum<LLDWPainter.DrawingFlip>
| Enum Constant and Description | 
|---|
| DRAWING_FLIP_180Defines the flip mode 180°: image must be rotated to 180° anticlockwise. | 
| DRAWING_FLIP_270Defines the flip mode 270°: image must be rotated to 270° anticlockwise. | 
| DRAWING_FLIP_90Defines the flip mode 90°: image must be rotated to 90° anticlockwise. | 
| DRAWING_FLIP_MIRRORDefines the flip mode mirror + "none": only a vertical mirror must be applied. | 
| DRAWING_FLIP_MIRROR_180Defines the flip mode mirror + 180°: a vertical mirror must be applied and then the image must be rotated to
 180° anticlockwise. | 
| DRAWING_FLIP_MIRROR_270Defines the flip mode mirror + 270°: a vertical mirror must be applied and then the image must be rotated to
 270° anticlockwise. | 
| DRAWING_FLIP_MIRROR_90Defines the flip mode mirror + 90°: a vertical mirror must be applied and then the image must be rotated to
 90° anticlockwise. | 
| DRAWING_FLIP_NONEDefines the flip mode "none": no flip must be performed. | 
| Modifier and Type | Field and Description | 
|---|---|
| int | valej.drawing native internal flip representation. | 
| Modifier and Type | Method and Description | 
|---|---|
| static LLDWPainter.DrawingFlip | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LLDWPainter.DrawingFlip[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_180
A B C D E Fis drawn:
F E D C B A
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_270
A B C D E Fis drawn:
E C A F D B
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_90
A B C D E Fis drawn:
B D F A C E
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_MIRROR
A B C D E Fis drawn:
B A D C F E
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_MIRROR_180
A B C D E Fis drawn:
E F C D A B
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_MIRROR_270
A B C D E Fis drawn:
F D B E C A
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_MIRROR_90
A B C D E Fis drawn:
A C E B D Fand then mirrored
public static final LLDWPainter.DrawingFlip DRAWING_FLIP_NONE
A B C D E Fis drawn:
A B C D E F
public static LLDWPainter.DrawingFlip valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static LLDWPainter.DrawingFlip[] values()
for (LLDWPainter.DrawingFlip c : LLDWPainter.DrawingFlip.values()) System.out.println(c);