public static enum AttributeKeys.StrokePlacement extends java.lang.Enum<AttributeKeys.StrokePlacement>
Enum Constant and Description |
---|
CENTER
If STROKE_PLACEMENT is put to this value, the stroke is centered
on the path.
|
INSIDE
If STROKE_PLACEMENT is put to this value, the stroke is placed
inside of a closed path.
|
OUTSIDE
If STROKE_PLACEMENT is put to this value, the stroke is placed
outside of a closed path.
|
Modifier and Type | Method and Description |
---|---|
static AttributeKeys.StrokePlacement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributeKeys.StrokePlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeKeys.StrokePlacement CENTER
public static final AttributeKeys.StrokePlacement INSIDE
public static final AttributeKeys.StrokePlacement OUTSIDE
public static AttributeKeys.StrokePlacement[] values()
for (AttributeKeys.StrokePlacement c : AttributeKeys.StrokePlacement.values()) System.out.println(c);
public static AttributeKeys.StrokePlacement 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