public static enum IncrementalReplayer.SearchAlgorithm extends java.lang.Enum<IncrementalReplayer.SearchAlgorithm>
Modifier and Type | Method and Description |
---|---|
static IncrementalReplayer.SearchAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IncrementalReplayer.SearchAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncrementalReplayer.SearchAlgorithm A_STAR
public static final IncrementalReplayer.SearchAlgorithm IDA_STAR
public static IncrementalReplayer.SearchAlgorithm[] values()
for (IncrementalReplayer.SearchAlgorithm c : IncrementalReplayer.SearchAlgorithm.values()) System.out.println(c);
public static IncrementalReplayer.SearchAlgorithm 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