public enum WlSeatCapability extends Enum<WlSeatCapability>
This is a bitmask of capabilities this seat has; if a member is set, then it is present on the seat.
| Enum Constant and Description |
|---|
KEYBOARD
the seat has one or more keyboards
|
POINTER
the seat has pointer devices
|
TOUCH
the seat has touch devices
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static WlSeatCapability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WlSeatCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WlSeatCapability POINTER
public static final WlSeatCapability KEYBOARD
public static final WlSeatCapability TOUCH
public static WlSeatCapability[] values()
for (WlSeatCapability c : WlSeatCapability.values()) System.out.println(c);
public static WlSeatCapability 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 © 2016. All rights reserved.