public enum YesAlwaysNoUserResponse extends Enum<YesAlwaysNoUserResponse>
| Enum Constant and Description |
|---|
NO
No.
|
NO_ABORT
No and abort.
|
YES
Yes.
|
YES_ALWAYS
Yes and assume that response thereafter.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isNo() |
boolean |
isNoAbort() |
boolean |
isNoOrAbort() |
boolean |
isYes() |
boolean |
isYesAlways() |
boolean |
isYesOrAlways() |
static YesAlwaysNoUserResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YesAlwaysNoUserResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YesAlwaysNoUserResponse YES
public static final YesAlwaysNoUserResponse YES_ALWAYS
public static final YesAlwaysNoUserResponse NO
public static final YesAlwaysNoUserResponse NO_ABORT
public static YesAlwaysNoUserResponse[] values()
for (YesAlwaysNoUserResponse c : YesAlwaysNoUserResponse.values()) System.out.println(c);
public static YesAlwaysNoUserResponse 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 boolean isYes()
public boolean isYesOrAlways()
public boolean isYesAlways()
public boolean isNo()
public boolean isNoOrAbort()
public boolean isNoAbort()
Copyright © 2015–2016 AZYVA INC.. All rights reserved.