public static enum IRobot.KeyMode extends java.lang.Enum<IRobot.KeyMode>
Enum Constant and Description |
---|
PRESS_ONLY |
PRESS_RELEASE |
RELEASE_ONLY |
Modifier and Type | Method and Description |
---|---|
static IRobot.KeyMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IRobot.KeyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IRobot.KeyMode PRESS_ONLY
public static final IRobot.KeyMode RELEASE_ONLY
public static final IRobot.KeyMode PRESS_RELEASE
public static IRobot.KeyMode[] values()
for (IRobot.KeyMode c : IRobot.KeyMode.values()) System.out.println(c);
public static IRobot.KeyMode 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