public static enum BluetoothMapEventReport.Type extends Enum<BluetoothMapEventReport.Type>
Enum Constant and Description |
---|
DELIVERY_FAILURE |
DELIVERY_SUCCESS |
MEMORY_AVAILABLE |
MEMORY_FULL |
MESSAGE_DELETED |
MESSAGE_SHIFT |
NEW_MESSAGE |
SENDING_FAILURE |
SENDING_SUCCESS |
Modifier and Type | Method and Description |
---|---|
String |
toString()
Returns the name of this enum constant, as contained in the
declaration.
|
static BluetoothMapEventReport.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BluetoothMapEventReport.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BluetoothMapEventReport.Type NEW_MESSAGE
public static final BluetoothMapEventReport.Type DELIVERY_SUCCESS
public static final BluetoothMapEventReport.Type SENDING_SUCCESS
public static final BluetoothMapEventReport.Type DELIVERY_FAILURE
public static final BluetoothMapEventReport.Type SENDING_FAILURE
public static final BluetoothMapEventReport.Type MEMORY_FULL
public static final BluetoothMapEventReport.Type MEMORY_AVAILABLE
public static final BluetoothMapEventReport.Type MESSAGE_DELETED
public static final BluetoothMapEventReport.Type MESSAGE_SHIFT
public static BluetoothMapEventReport.Type[] values()
for (BluetoothMapEventReport.Type c : BluetoothMapEventReport.Type.values()) System.out.println(c);
public static BluetoothMapEventReport.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
Enum
toString
in class Enum<BluetoothMapEventReport.Type>