public enum PathPaintOpFlags extends java.lang.Enum<PathPaintOpFlags>
| Enum Constant and Description |
|---|
EO_FILL
Fill the path, using the even/odd rule to determine the region to fill, as with the f* (eofill) operator.
|
FILL
Fill the path, using the nonzero winding rule to determine the region to fill, as with the f (fill) operator.
|
NEITHER
The path is neither stroked or filled.
|
STROKE
Stroke the path, as with the S (stroke) operator.
|
| Modifier and Type | Method and Description |
|---|---|
static PathPaintOpFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PathPaintOpFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathPaintOpFlags NEITHER
public static final PathPaintOpFlags STROKE
public static final PathPaintOpFlags FILL
public static final PathPaintOpFlags EO_FILL
public static PathPaintOpFlags[] values()
for (PathPaintOpFlags c : PathPaintOpFlags.values()) System.out.println(c);
public static PathPaintOpFlags 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