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