public enum DialogState extends Enum<DialogState>
| Enum Constant and Description |
|---|
APPLY |
CANCEL |
COMPLETE |
CONTINUE |
INCOMPLETE |
NO |
OK |
YES |
| Modifier and Type | Method and Description |
|---|---|
static DialogState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DialogState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogState COMPLETE
public static final DialogState INCOMPLETE
public static final DialogState YES
public static final DialogState NO
public static final DialogState CANCEL
public static final DialogState CONTINUE
public static final DialogState OK
public static final DialogState APPLY
public static DialogState[] values()
for (DialogState c : DialogState.values()) System.out.println(c);
public static DialogState 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 nullCopyright © 2016. All rights reserved.