public enum UnhandledPromptBehavior extends java.lang.Enum<UnhandledPromptBehavior>
| Enum Constant and Description |
|---|
ACCEPT |
ACCEPT_AND_NOTIFY |
DISMISS |
DISMISS_AND_NOTIFY |
IGNORE |
| Modifier and Type | Method and Description |
|---|---|
static UnhandledPromptBehavior |
fromString(java.lang.String value)
Converts the given value to an enum member.
|
java.lang.String |
toString() |
static UnhandledPromptBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnhandledPromptBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnhandledPromptBehavior DISMISS
public static final UnhandledPromptBehavior ACCEPT
public static final UnhandledPromptBehavior DISMISS_AND_NOTIFY
public static final UnhandledPromptBehavior ACCEPT_AND_NOTIFY
public static final UnhandledPromptBehavior IGNORE
public static UnhandledPromptBehavior[] values()
for (UnhandledPromptBehavior c : UnhandledPromptBehavior.values()) System.out.println(c);
public static UnhandledPromptBehavior 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<UnhandledPromptBehavior>public static UnhandledPromptBehavior fromString(java.lang.String value)
value - The value to convert.java.lang.IllegalArgumentException - If the provided value cannot be matched.