public enum Operations extends Enum<Operations >
| Enum Constant and Description |
|---|
COLLECTION
collection creation
|
DIFFERENCE
difference operation
|
HULL
hull
|
INTERSECTION
intersection operation
|
UNION
union operation
|
| Modifier and Type | Method and Description |
|---|---|
static Operations |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static Operations |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OperationsUNION
public static final OperationsINTERSECTION
public static final OperationsDIFFERENCE
public static final OperationsCOLLECTION
public static final OperationsHULL
public static Operations[] values()
for (Operations c : Operations.values()) System.out.println(c);
public static OperationsvalueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null