public static enum Instruction.Command extends Enum<Instruction.Command>
| Enum Constant and Description |
|---|
DIFF |
FILTER |
INTERSECTION |
RETURN |
REVERSEFILTER |
RUN |
UNION |
XOR |
| Modifier and Type | Method and Description |
|---|---|
static Instruction.Command |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Instruction.Command[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Instruction.Command RUN
public static final Instruction.Command INTERSECTION
public static final Instruction.Command UNION
public static final Instruction.Command DIFF
public static final Instruction.Command RETURN
public static final Instruction.Command FILTER
public static final Instruction.Command XOR
public static final Instruction.Command REVERSEFILTER
public static Instruction.Command[] values()
for (Instruction.Command c : Instruction.Command.values()) System.out.println(c);
public static Instruction.Command 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 © 2020. All rights reserved.