com.yobotics.simulationconstructionset.robotcommprotocol
Enum RobotProtocolListener.Command
java.lang.Object
java.lang.Enum<RobotProtocolListener.Command>
com.yobotics.simulationconstructionset.robotcommprotocol.RobotProtocolListener.Command
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<RobotProtocolListener.Command>
- Enclosing class:
- RobotProtocolListener
public static enum RobotProtocolListener.Command
- extends java.lang.Enum<RobotProtocolListener.Command>
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ZERO_COMMAND
public static final RobotProtocolListener.Command ZERO_COMMAND
HELLO
public static final RobotProtocolListener.Command HELLO
CONNECT
public static final RobotProtocolListener.Command CONNECT
CONNECTED
public static final RobotProtocolListener.Command CONNECTED
SET
public static final RobotProtocolListener.Command SET
SEND
public static final RobotProtocolListener.Command SEND
SENDING
public static final RobotProtocolListener.Command SENDING
UNSEND
public static final RobotProtocolListener.Command UNSEND
UNSEND_ALL
public static final RobotProtocolListener.Command UNSEND_ALL
PERIOD
public static final RobotProtocolListener.Command PERIOD
DISCONNECT
public static final RobotProtocolListener.Command DISCONNECT
USR_CMD
public static final RobotProtocolListener.Command USR_CMD
DATA
public static final RobotProtocolListener.Command DATA
TEXT_MESSAGE
public static final RobotProtocolListener.Command TEXT_MESSAGE
UPDATE_VARS
public static final RobotProtocolListener.Command UPDATE_VARS
CHECK_CONNECTED
public static final RobotProtocolListener.Command CHECK_CONNECTED
values
public static final RobotProtocolListener.Command[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(RobotProtocolListener.Command c : RobotProtocolListener.Command.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static RobotProtocolListener.Command 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 name