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