public static enum ReductionTracker.Rule extends java.lang.Enum<ReductionTracker.Rule>
Enum Constant and Description |
---|
ABSTRACTION |
ABSTRACTIONREDUCE |
LDPLACE |
LDPLACEREDUCE |
LDTRAN |
LDTRANREDUCE |
RENAME |
Modifier and Type | Method and Description |
---|---|
static ReductionTracker.Rule |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReductionTracker.Rule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReductionTracker.Rule ABSTRACTION
public static final ReductionTracker.Rule LDPLACE
public static final ReductionTracker.Rule LDTRAN
public static final ReductionTracker.Rule ABSTRACTIONREDUCE
public static final ReductionTracker.Rule LDPLACEREDUCE
public static final ReductionTracker.Rule LDTRANREDUCE
public static final ReductionTracker.Rule RENAME
public static ReductionTracker.Rule[] values()
for (ReductionTracker.Rule c : ReductionTracker.Rule.values()) System.out.println(c);
public static ReductionTracker.Rule valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null