public enum XInputLibraryVersion extends Enum<XInputLibraryVersion>
| Enum Constant and Description |
|---|
NONE
Library was not loaded.
|
XINPUT_1_3
XInput 1.3 was loaded.
|
XINPUT_1_4
XInput 1.4 was loaded.
|
XINPUT_9_1_0
XInput 9.1.0 was loaded.
|
| Modifier and Type | Method and Description |
|---|---|
static XInputLibraryVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XInputLibraryVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XInputLibraryVersion NONE
public static final XInputLibraryVersion XINPUT_1_4
public static final XInputLibraryVersion XINPUT_1_3
public static final XInputLibraryVersion XINPUT_9_1_0
public static XInputLibraryVersion[] values()
for (XInputLibraryVersion c : XInputLibraryVersion.values()) System.out.println(c);
public static XInputLibraryVersion 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 © 2018. All rights reserved.