All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.hypfvieh.bluetooth.DiscoveryTransport Maven / Gradle / Ivy

Go to download

Java native bluetooth library which uses bluez via dbus (linux only). This is the OSGi compliant bundle of all required libraries in one bundle.

The newest version!
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();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy