Package cmion.addOns.samgar.playerProxy
Enum PlayerPlanner.DATA
- java.lang.Object
-
- java.lang.Enum<PlayerPlanner.DATA>
-
- cmion.addOns.samgar.playerProxy.PlayerPlanner.DATA
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PlayerPlanner.DATA>
- Enclosing class:
- PlayerPlanner
public static enum PlayerPlanner.DATA extends java.lang.Enum<PlayerPlanner.DATA>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlayerPlanner.DATAvalueOf(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.
-
-
-
Enum Constant Detail
-
ERROR
public static final PlayerPlanner.DATA ERROR
-
ACK
public static final PlayerPlanner.DATA ACK
-
GOAL
public static final PlayerPlanner.DATA GOAL
-
POSE
public static final PlayerPlanner.DATA POSE
-
CURR_WAYPOINT
public static final PlayerPlanner.DATA CURR_WAYPOINT
-
PATH
public static final PlayerPlanner.DATA PATH
-
WAYPOINTS
public static final PlayerPlanner.DATA WAYPOINTS
-
-
Method Detail
-
values
public static PlayerPlanner.DATA[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlayerPlanner.DATA c : PlayerPlanner.DATA.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlayerPlanner.DATA valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-