public static enum VectorGraphicsPainter.Direction extends 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(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 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 VectorGraphicsPainter.Direction[] values()
for (VectorGraphicsPainter.Direction c : VectorGraphicsPainter.Direction.values()) System.out.println(c);