Java tutorial
//package com.java2s; import android.bluetooth.BluetoothDevice; import java.lang.reflect.Method; public class Main { public static boolean removeBond(Class btClass, BluetoothDevice btDevice) throws Exception { Method removeBondMethod = btClass.getMethod("removeBond"); Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice); return returnValue.booleanValue(); } }