public static enum AntiAliasedShapes.Cap extends java.lang.Enum<AntiAliasedShapes.Cap>
Enum Constant and Description |
---|
NONE
No specific cap is drawn
|
PERPENDICULAR
Cap is perpendicular to the line
|
ROUNDED
Cap is represented by a semi circle (default configuration)
|
Modifier and Type | Method and Description |
---|---|
static AntiAliasedShapes.Cap |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AntiAliasedShapes.Cap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AntiAliasedShapes.Cap NONE
public static final AntiAliasedShapes.Cap ROUNDED
public static final AntiAliasedShapes.Cap PERPENDICULAR
public static AntiAliasedShapes.Cap[] values()
for (AntiAliasedShapes.Cap c : AntiAliasedShapes.Cap.values()) System.out.println(c);
public static AntiAliasedShapes.Cap 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