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