public enum UnexpectedAlertBehaviour extends java.lang.Enum<UnexpectedAlertBehaviour>
Enum Constant and Description |
---|
ACCEPT |
ACCEPT_AND_NOTIFY |
DISMISS |
DISMISS_AND_NOTIFY |
IGNORE |
Modifier and Type | Method and Description |
---|---|
static UnexpectedAlertBehaviour |
fromString(java.lang.String text) |
java.lang.String |
toString() |
static UnexpectedAlertBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnexpectedAlertBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnexpectedAlertBehaviour ACCEPT
public static final UnexpectedAlertBehaviour DISMISS
public static final UnexpectedAlertBehaviour ACCEPT_AND_NOTIFY
public static final UnexpectedAlertBehaviour DISMISS_AND_NOTIFY
public static final UnexpectedAlertBehaviour IGNORE
public static UnexpectedAlertBehaviour[] values()
for (UnexpectedAlertBehaviour c : UnexpectedAlertBehaviour.values()) System.out.println(c);
public static UnexpectedAlertBehaviour 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<UnexpectedAlertBehaviour>
public static UnexpectedAlertBehaviour fromString(java.lang.String text)