public static enum IRControlAction.Button extends Enum<IRControlAction.Button>
| Enum Constant and Description |
|---|
A
Button A on IR controller
|
B
Button B on IR controller
|
C
Button C on IR controller
|
DOWN
Button Down on IR controller
|
LEFT
Button Left on IR controller
|
POWER
Button Power on IR controller
|
POWERDOWN
The Power-down button on the IR plate
|
RIGHT
Button Right on IR controller
|
SELECT
Button Select on IR controller
|
UP
Button Up on IR controller
|
| Modifier and Type | Method and Description |
|---|---|
static IRControlAction.Button |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IRControlAction.Button[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IRControlAction.Button POWERDOWN
public static final IRControlAction.Button POWER
public static final IRControlAction.Button A
public static final IRControlAction.Button B
public static final IRControlAction.Button C
public static final IRControlAction.Button UP
public static final IRControlAction.Button DOWN
public static final IRControlAction.Button LEFT
public static final IRControlAction.Button RIGHT
public static final IRControlAction.Button SELECT
public static IRControlAction.Button[] values()
for (IRControlAction.Button c : IRControlAction.Button.values()) System.out.println(c);
public static IRControlAction.Button valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.