public static enum LConstants.InputMode extends Enum<LConstants.InputMode>
| Enum Constant and Description |
|---|
MULTI_POINTER |
SINGLE_POINTER |
| Modifier and Type | Method and Description |
|---|---|
static LConstants.InputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LConstants.InputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LConstants.InputMode SINGLE_POINTER
public static final LConstants.InputMode MULTI_POINTER
public static LConstants.InputMode[] values()
for (LConstants.InputMode c : LConstants.InputMode.values()) System.out.println(c);
public static LConstants.InputMode 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 © 2019 Philip Heyse. All rights reserved.