public enum DialogButtons extends Enum<DialogButtons>
MessageDialog or MessageFormDialog| Enum Constant and Description |
|---|
OK |
OK_CANCEL |
YES_NO |
YES_NO_CANCEL |
| Modifier and Type | Method and Description |
|---|---|
List<DialogButton> |
toList()
Gets the list of buttons
|
static DialogButtons |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DialogButtons[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogButtons OK
public static final DialogButtons OK_CANCEL
public static final DialogButtons YES_NO
public static final DialogButtons YES_NO_CANCEL
public static DialogButtons[] values()
for (DialogButtons c : DialogButtons.values()) System.out.println(c);
public static DialogButtons 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 List<DialogButton> toList()
List of DialogButtonsCopyright © 2017 7thWeb. All rights reserved.