public static enum Path.Op extends Enum<Path.Op>
Enum Constant and Description |
---|
DIFFERENCE
Subtract the second path from the first path.
|
INTERSECT
Intersect the two paths.
|
REVERSE_DIFFERENCE
Subtract the first path from the second path.
|
UNION
Union (inclusive-or) the two paths.
|
XOR
Exclusive-or the two paths.
|
Modifier and Type | Method and Description |
---|---|
static Path.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Path.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Path.Op DIFFERENCE
public static final Path.Op INTERSECT
public static final Path.Op UNION
public static final Path.Op XOR
public static final Path.Op REVERSE_DIFFERENCE
public static Path.Op[] values()
for (Path.Op c : Path.Op.values()) System.out.println(c);
public static Path.Op 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