public static enum VectorGraphicsPainter.Direction extends java.lang.Enum<VectorGraphicsPainter.Direction>
| Enum Constant and Description |
|---|
CLOCKWISE
Specifies that the direction is the same as a clock's hands.
|
COUNTER_CLOCKWISE
Specifies that the direction is the opposite as a clock's hands.
|
| Modifier and Type | Method and Description |
|---|---|
static VectorGraphicsPainter.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VectorGraphicsPainter.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorGraphicsPainter.Direction CLOCKWISE
public static final VectorGraphicsPainter.Direction COUNTER_CLOCKWISE
public static VectorGraphicsPainter.Direction[] values()
for (VectorGraphicsPainter.Direction c : VectorGraphicsPainter.Direction.values()) System.out.println(c);
public static VectorGraphicsPainter.Direction 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