am 621b790d: am f455986a: Add documentation for BluetoothSocket.getConnectionType()

* commit '621b790dc8c3b45f343e44d5e673368a0ceef57a':
  Add documentation for BluetoothSocket.getConnectionType()
This commit is contained in:
Andre Eisenbach
2015-05-05 01:22:43 +00:00
committed by Android Git Automerger

View File

@@ -91,9 +91,13 @@ public final class BluetoothSocket implements Closeable {
public static final int MAX_RFCOMM_CHANNEL = 30;
/*package*/ static final int MAX_L2CAP_PACKAGE_SIZE = 0xFFFF;
/** Keep TYPE_ fields in sync with BluetoothSocket.cpp */
/** RFCOMM socket */
public static final int TYPE_RFCOMM = 1;
/** SCO socket */
public static final int TYPE_SCO = 2;
/** L2CAP socket */
public static final int TYPE_L2CAP = 3;
/*package*/ static final int EBADFD = 77;
@@ -578,8 +582,8 @@ public final class BluetoothSocket implements Closeable {
}
/**
* Get the type of the underlying connection
* @return one of TYPE_
* Get the type of the underlying connection.
* @return one of {@link #TYPE_RFCOMM}, {@link #TYPE_SCO} or {@link #TYPE_L2CAP}
*/
public int getConnectionType() {
return mType;