public static enum Path.FillType extends Enum<Path.FillType>
Enum Constant and Description |
---|
EVEN_ODD |
INVERSE_EVEN_ODD |
INVERSE_WINDING |
WINDING |
Modifier and Type | Method and Description |
---|---|
static Path.FillType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Path.FillType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Path.FillType WINDING
public static final Path.FillType EVEN_ODD
public static final Path.FillType INVERSE_WINDING
public static final Path.FillType INVERSE_EVEN_ODD
public static Path.FillType[] values()
for (Path.FillType c : Path.FillType.values()) System.out.println(c);
public static Path.FillType 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 null