public static enum Region.Op extends Enum<Region.Op>
| Enum Constant and Description |
|---|
DIFFERENCE |
INTERSECT |
REPLACE |
REVERSE_DIFFERENCE |
UNION |
XOR |
| Modifier and Type | Method and Description |
|---|---|
static Region.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Region.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Region.Op DIFFERENCE
public static final Region.Op INTERSECT
public static final Region.Op REPLACE
public static final Region.Op REVERSE_DIFFERENCE
public static final Region.Op UNION
public static final Region.Op XOR
public static Region.Op[] values()
for (Region.Op c : Region.Op.values()) System.out.println(c);
public static Region.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 nullCopyright © 2008-2013. All Rights Reserved.