public enum UnexpectedAlertBehaviour extends Enum<UnexpectedAlertBehaviour>
| Modifier and Type | Method and Description |
|---|---|
static UnexpectedAlertBehaviour |
fromString(String text) |
String |
toString() |
static UnexpectedAlertBehaviour |
valueOf(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 IGNORE
public static UnexpectedAlertBehaviour[] values()
for (UnexpectedAlertBehaviour c : UnexpectedAlertBehaviour.values()) System.out.println(c);
public static UnexpectedAlertBehaviour 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()
toString in class Enum<UnexpectedAlertBehaviour>public static UnexpectedAlertBehaviour fromString(String text)
Copyright © 2014. All rights reserved.