Class ButtonType
java.lang.Object
javafx.scene.control.ButtonType
The ButtonType class is used as part of the JavaFX
Dialog API (more
specifically, the DialogPane API) to specify which buttons should be
shown to users in the dialogs. Refer to the DialogPane class javadoc
for more information on how to use this class.- Since:
- JavaFX 8u40
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ButtonTypeA pre-definedButtonTypethat displays "Apply" and has aButtonBar.ButtonDataofButtonBar.ButtonData.APPLY.static final ButtonTypeA pre-definedButtonTypethat displays "Cancel" and has aButtonBar.ButtonDataofButtonBar.ButtonData.CANCEL_CLOSE.static final ButtonTypeA pre-definedButtonTypethat displays "Close" and has aButtonBar.ButtonDataofButtonBar.ButtonData.CANCEL_CLOSE.static final ButtonTypeA pre-definedButtonTypethat displays "Finish" and has aButtonBar.ButtonDataofButtonBar.ButtonData.FINISH.static final ButtonTypeA pre-definedButtonTypethat displays "Next" and has aButtonBar.ButtonDataofButtonBar.ButtonData.NEXT_FORWARD.static final ButtonTypeA pre-definedButtonTypethat displays "No" and has aButtonBar.ButtonDataofButtonBar.ButtonData.NO.static final ButtonTypeA pre-definedButtonTypethat displays "OK" and has aButtonBar.ButtonDataofButtonBar.ButtonData.OK_DONE.static final ButtonTypeA pre-definedButtonTypethat displays "Previous" and has aButtonBar.ButtonDataofButtonBar.ButtonData.BACK_PREVIOUS.static final ButtonTypeA pre-definedButtonTypethat displays "Yes" and has aButtonBar.ButtonDataofButtonBar.ButtonData.YES. -
Constructor Summary
ConstructorsConstructorDescriptionButtonType(String text) Creates a ButtonType instance with the given text, and the ButtonData set asButtonBar.ButtonData.OTHER.ButtonType(String text, ButtonBar.ButtonData buttonData) Creates a ButtonType instance with the given text, and the ButtonData set as specified. -
Method Summary
Modifier and TypeMethodDescriptionfinal ButtonBar.ButtonDataReturns the ButtonData specified for this ButtonType in the constructor.final StringgetText()Returns the text specified for this ButtonType in the constructor.
-
Field Details
-
APPLY
A pre-definedButtonTypethat displays "Apply" and has aButtonBar.ButtonDataofButtonBar.ButtonData.APPLY. -
OK
A pre-definedButtonTypethat displays "OK" and has aButtonBar.ButtonDataofButtonBar.ButtonData.OK_DONE. -
CANCEL
A pre-definedButtonTypethat displays "Cancel" and has aButtonBar.ButtonDataofButtonBar.ButtonData.CANCEL_CLOSE. -
CLOSE
A pre-definedButtonTypethat displays "Close" and has aButtonBar.ButtonDataofButtonBar.ButtonData.CANCEL_CLOSE. -
YES
A pre-definedButtonTypethat displays "Yes" and has aButtonBar.ButtonDataofButtonBar.ButtonData.YES. -
NO
A pre-definedButtonTypethat displays "No" and has aButtonBar.ButtonDataofButtonBar.ButtonData.NO. -
FINISH
A pre-definedButtonTypethat displays "Finish" and has aButtonBar.ButtonDataofButtonBar.ButtonData.FINISH. -
NEXT
A pre-definedButtonTypethat displays "Next" and has aButtonBar.ButtonDataofButtonBar.ButtonData.NEXT_FORWARD. -
PREVIOUS
A pre-definedButtonTypethat displays "Previous" and has aButtonBar.ButtonDataofButtonBar.ButtonData.BACK_PREVIOUS.
-
-
Constructor Details
-
ButtonType
Creates a ButtonType instance with the given text, and the ButtonData set asButtonBar.ButtonData.OTHER.- Parameters:
text- The string to display in the text property of controls such asButton.
-
ButtonType
Creates a ButtonType instance with the given text, and the ButtonData set as specified.- Parameters:
text- The string to display in the text property of controls such asButton.buttonData- The type of button that should be created from this ButtonType.
-
-
Method Details
-
getButtonData
Returns the ButtonData specified for this ButtonType in the constructor.- Returns:
- the ButtonData specified for this ButtonType in the constructor
-
getText
Returns the text specified for this ButtonType in the constructor.- Returns:
- the text specified for this ButtonType in the constructor
-