public enum UnbluUiRequestReason extends java.lang.Enum<UnbluUiRequestReason>
IUnbluUiEventApi.UiVisibilityRequest
. It defines several reason why the UI of unblu needs to be shown.Enum Constant and Description |
---|
INCOMING_CALL
There is an incoming call
|
MISSED_CALL
There was a missed call
|
NEW_MESSAGES
There are one or more new messages
|
OTHER
There is another not defined reason
|
Modifier and Type | Method and Description |
---|---|
static UnbluUiRequestReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnbluUiRequestReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnbluUiRequestReason NEW_MESSAGES
public static final UnbluUiRequestReason INCOMING_CALL
public static final UnbluUiRequestReason MISSED_CALL
public static final UnbluUiRequestReason OTHER
public static UnbluUiRequestReason[] values()
for (UnbluUiRequestReason c : UnbluUiRequestReason.values()) System.out.println(c);
public static UnbluUiRequestReason 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