public enum BluetoothInterface extends Enum<BluetoothInterface>
Enum Constant and Description |
---|
BT3610
Connection interface CipherLab 3610 dongle
|
HID
Connection interface Bluetooth HID
|
SPP_Master
Connection interface Bluetooth SPP Master
|
SPP_Slave
Connection interface Bluetooth SPP Slave
|
Modifier and Type | Method and Description |
---|---|
static BluetoothInterface |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BluetoothInterface[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BluetoothInterface SPP_Slave
public static final BluetoothInterface SPP_Master
public static final BluetoothInterface HID
public static final BluetoothInterface BT3610
public static BluetoothInterface[] values()
for (BluetoothInterface c : BluetoothInterface.values()) System.out.println(c);
public static BluetoothInterface 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 null