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