public static enum AttributeKeys.StrokeType extends java.lang.Enum<AttributeKeys.StrokeType>
Enum Constant and Description |
---|
BASIC
If STROKE_TYPE is put to this value, a BasicStroke instance is used
for stroking.
|
DOUBLE
If STROKE_TYPE is put to this value, a DoubleStroke instance is used
for stroking.
|
Modifier and Type | Method and Description |
---|---|
static AttributeKeys.StrokeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributeKeys.StrokeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeKeys.StrokeType BASIC
public static final AttributeKeys.StrokeType DOUBLE
public static AttributeKeys.StrokeType[] values()
for (AttributeKeys.StrokeType c : AttributeKeys.StrokeType.values()) System.out.println(c);
public static AttributeKeys.StrokeType 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