java.io.Serializable, java.lang.Comparable<PlayerPlanner.DATA>public static enum PlayerPlanner.DATA extends java.lang.Enum<PlayerPlanner.DATA>
| Enum Constant | Description |
|---|---|
ACK |
|
CURR_WAYPOINT |
|
ERROR |
|
GOAL |
|
PATH |
|
POSE |
|
WAYPOINTS |
| Modifier and Type | Method | Description |
|---|---|---|
static PlayerPlanner.DATA |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PlayerPlanner.DATA[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerPlanner.DATA ERROR
public static final PlayerPlanner.DATA ACK
public static final PlayerPlanner.DATA GOAL
public static final PlayerPlanner.DATA POSE
public static final PlayerPlanner.DATA CURR_WAYPOINT
public static final PlayerPlanner.DATA PATH
public static final PlayerPlanner.DATA WAYPOINTS
public static PlayerPlanner.DATA[] values()
for (PlayerPlanner.DATA c : PlayerPlanner.DATA.values()) System.out.println(c);
public static PlayerPlanner.DATA 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