public static enum AttributeKeys.WindingRule extends java.lang.Enum<AttributeKeys.WindingRule>
| Enum Constant and Description |
|---|
EVEN_ODD
If WINDING_RULE is put to this value, an even-odd winding rule
is used for determining the interior of a path.
|
NON_ZERO
If WINDING_RULE is put to this value, a non-zero winding rule
is used for determining the interior of a path.
|
| Modifier and Type | Method and Description |
|---|---|
static AttributeKeys.WindingRule |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributeKeys.WindingRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeKeys.WindingRule EVEN_ODD
public static final AttributeKeys.WindingRule NON_ZERO
public static AttributeKeys.WindingRule[] values()
for (AttributeKeys.WindingRule c : AttributeKeys.WindingRule.values()) System.out.println(c);
public static AttributeKeys.WindingRule 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