public enum NotificationSetupMode extends java.lang.Enum<NotificationSetupMode>
| Enum Constant and Description |
|---|
COMPAT
Compatibility mode for devices that do not contain CLIENT_CHARACTERISTIC_CONFIG
|
DEFAULT
Configures notifications according to the standard.
|
QUICK_SETUP
Configures notifications according to the standard but in contrast to the
DEFAULT mode the `Observable |
| Modifier and Type | Method and Description |
|---|---|
static NotificationSetupMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationSetupMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationSetupMode DEFAULT
QUICK_SETUPpublic static final NotificationSetupMode COMPAT
public static final NotificationSetupMode QUICK_SETUP
DEFAULT mode the `ObservableDEFAULT case and `Observablepublic static NotificationSetupMode[] values()
for (NotificationSetupMode c : NotificationSetupMode.values()) System.out.println(c);
public static NotificationSetupMode 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