public static enum FXDialog.Answer extends Enum<FXDialog.Answer>
| Modifier and Type | Method and Description |
|---|---|
static FXDialog.Answer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FXDialog.Answer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FXDialog.Answer OK
public static final FXDialog.Answer CANCEL
public static final FXDialog.Answer YES
public static final FXDialog.Answer NO
public static final FXDialog.Answer UNKNOWN
public static FXDialog.Answer[] values()
for (FXDialog.Answer c : FXDialog.Answer.values()) System.out.println(c);
public static FXDialog.Answer 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 © 2010–2019 Francesco Kriegel. All rights reserved.