Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.bluetooth.BluetoothGattDescriptor;

public class Main {
    public static String formatGattDescriptor(BluetoothGattDescriptor descriptor) {
        String log = "";
        if (descriptor == null) {
            log += "<null>";
        } else {
            log += "descriptorUUID=" + descriptor.getUuid();
            log += "descriptorValue=" + descriptor.getValue();
        }
        return log;
    }
}