public static enum LegoRobot.ClosingMode extends java.lang.Enum<LegoRobot.ClosingMode>
Enum Constant and Description |
---|
DisposeOnClose
Stops the motors, hides window and disconnects the communication link.
|
TerminateOnClose
Stops the motors and terminates application by calling System.exit(0) (default).
|
Modifier and Type | Method and Description |
---|---|
static LegoRobot.ClosingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LegoRobot.ClosingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegoRobot.ClosingMode TerminateOnClose
public static final LegoRobot.ClosingMode DisposeOnClose
public static LegoRobot.ClosingMode[] values()
for (LegoRobot.ClosingMode c : LegoRobot.ClosingMode.values()) System.out.println(c);
public static LegoRobot.ClosingMode 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