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