public static enum Field.Operation extends Enum<Field.Operation>
| Enum Constant and Description |
|---|
INTERSECT |
NOT_EMPTY_AND_NOT_INTERSECT |
NOT_INTERSECT |
| Modifier and Type | Method and Description |
|---|---|
static Field.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Field.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Field.Operation INTERSECT
public static final Field.Operation NOT_INTERSECT
public static final Field.Operation NOT_EMPTY_AND_NOT_INTERSECT
public static Field.Operation[] values()
for (Field.Operation c : Field.Operation.values()) System.out.println(c);
public static Field.Operation 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 © 2015 BioPAX. All rights reserved.