com.github.hypfvieh.bluetooth.DiscoveryTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluez-dbus-osgi Show documentation
Show all versions of bluez-dbus-osgi Show documentation
Java native bluetooth library which uses bluez via dbus (linux only).
This is the OSGi compliant bundle of all required libraries in one bundle.
package com.github.hypfvieh.bluetooth;
/**
* Supported DiscoveryTransport values.
*/
public enum DiscoveryTransport {
/** "auto" - interleaved scan, default value */
AUTO,
/** "bredr" - BR/EDR inquiry */
BREDR,
/** "le" - LE scan only */
LE;
@Override
public String toString() {
return name().toLowerCase();
}
}