public final class DialogResult extends Object
Specifies identifiers to indicate the return value of a message box.
Modifier and Type | Field and Description |
---|---|
static DialogResult |
ABORT
The message box return value is ABORT (usually sent from a button labeled ABORT).
|
static DialogResult |
APPLY
The message box return value is APPLY (usually sent from a button labeled APPLY).
|
static DialogResult |
CANCEL
The message box return value is CANCEL (usually sent from a button labeled CANCEL).
|
static DialogResult |
CLOSE
The message box return value is CLOSE (usually sent from a button labeled CLOSE).
|
static DialogResult |
CONTINUE
The message box return value is CONTINUE (usually sent from a button labeled CONTINUE).
|
static DialogResult |
FINISH
The message box return value is FINISH (usually sent from a button labeled FINISH).
|
static DialogResult |
IGNORE
The message box return value is IGNORE (usually sent from a button labeled IGNORE).
|
static DialogResult |
NEXT
The message box return value is NEXT (usually sent from a button labeled NEXT).
|
static DialogResult |
NO
The message box return value is NO (usually sent from a button labeled NO).
|
static DialogResult |
NONE
Nothing is returned from the message box.
|
static DialogResult |
OK
The message box return value is OK (usually sent from a button labeled OK).
|
static DialogResult |
PREVIOUS
The message box return value is PREVIOUS (usually sent from a button labeled PREVIOUS).
|
static DialogResult |
RETRY
The message box return value is RETRY (usually sent from a button labeled RETRY).
|
static DialogResult |
SUBMIT
The message box return value is SUBMIT (usually sent from a button labeled SUBMIT).
|
static DialogResult |
TRYAGAIN
The message box return value is TRYAGAIN (usually sent from a button labeled TRYAGAIN).
|
static DialogResult |
YES
The message box return value is YES (usually sent from a button labeled YES).
|
Constructor and Description |
---|
DialogResult() |
DialogResult(javafx.scene.control.ButtonType value) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
int |
hashCode() |
String |
toString()
Returns a string representation of the object.
|
public static final DialogResult OK
The message box return value is OK (usually sent from a button labeled OK).
public static final DialogResult APPLY
The message box return value is APPLY (usually sent from a button labeled APPLY).
public static final DialogResult CANCEL
The message box return value is CANCEL (usually sent from a button labeled CANCEL).
public static final DialogResult CLOSE
The message box return value is CLOSE (usually sent from a button labeled CLOSE).
public static final DialogResult FINISH
The message box return value is FINISH (usually sent from a button labeled FINISH).
public static final DialogResult NEXT
The message box return value is NEXT (usually sent from a button labeled NEXT).
public static final DialogResult NO
The message box return value is NO (usually sent from a button labeled NO).
public static final DialogResult PREVIOUS
The message box return value is PREVIOUS (usually sent from a button labeled PREVIOUS).
public static final DialogResult YES
The message box return value is YES (usually sent from a button labeled YES).
public static final DialogResult ABORT
The message box return value is ABORT (usually sent from a button labeled ABORT).
public static final DialogResult RETRY
The message box return value is RETRY (usually sent from a button labeled RETRY).
public static final DialogResult TRYAGAIN
The message box return value is TRYAGAIN (usually sent from a button labeled TRYAGAIN).
public static final DialogResult IGNORE
The message box return value is IGNORE (usually sent from a button labeled IGNORE).
public static final DialogResult CONTINUE
The message box return value is CONTINUE (usually sent from a button labeled CONTINUE).
public static final DialogResult SUBMIT
The message box return value is SUBMIT (usually sent from a button labeled SUBMIT).
public static final DialogResult NONE
Nothing is returned from the message box.
public DialogResult()
public DialogResult(javafx.scene.control.ButtonType value)
Copyright © 2017–2018 J&G CompTech. All rights reserved.