public static enum Path.FillType extends Enum<Path.FillType>
Enum Constant and Description |
---|
EVEN_ODD
Specifies that "inside" is computed by an odd number of edge
crossings.
|
INVERSE_EVEN_ODD
Same as
EVEN_ODD , but draws outside of the path, rather than inside. |
INVERSE_WINDING
Same as
WINDING , but draws outside of the path, rather than inside. |
WINDING
Specifies that "inside" is computed by a non-zero sum of signed
edge crossings.
|
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
WINDING
, but draws outside of the path, rather than inside.public static final Path.FillType INVERSE_EVEN_ODD
EVEN_ODD
, but draws outside of the path, rather than inside.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