| Enum Constant and Description |
|---|
SIGNED
Write characteristic including authentication signature
|
WITH_RESPONSE
Write characteristic and requesting acknowledgement by the remote peripheral
|
WITHOUT_RESPONSE
Write characteristic without requiring a response by the remote peripheral
|
| Modifier and Type | Method and Description |
|---|---|
static WriteType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WriteType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WriteType WITH_RESPONSE
public static final WriteType WITHOUT_RESPONSE
public static final WriteType SIGNED
public static WriteType[] values()
for (WriteType c : WriteType.values()) System.out.println(c);
public static WriteType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null