Uses of Enum Class
com.dlsc.gemsfx.DialogPane.Type
Packages that use DialogPane.Type
-
Uses of DialogPane.Type in com.dlsc.gemsfx
Subclasses with type arguments of type DialogPane.Type in com.dlsc.gemsfxMethods in com.dlsc.gemsfx that return DialogPane.TypeModifier and TypeMethodDescriptionfinal DialogPane.TypeDialogPane.Dialog.getType()Returns the type of the dialog, e.g.static DialogPane.TypeReturns the enum constant of this class with the specified name.static DialogPane.Type[]DialogPane.Type.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.dlsc.gemsfx with parameters of type DialogPane.TypeModifier and TypeMethodDescriptionfinal <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize, List<javafx.scene.control.ButtonType> buttons) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize, List<javafx.scene.control.ButtonType> buttons, boolean sameWidthButtons) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, boolean maximize, List<javafx.scene.control.ButtonType> buttons, boolean sameWidthButtons, javafx.beans.property.BooleanProperty validProperty) Shows an arbitrary node in a dialog.final <T> DialogPane.Dialog<T> DialogPane.showNode(DialogPane.Type type, String title, javafx.scene.Node node, List<javafx.scene.control.ButtonType> buttons) Shows an arbitrary node in a dialog.Constructors in com.dlsc.gemsfx with parameters of type DialogPane.TypeModifierConstructorDescriptionDialog(DialogPane pane, DialogPane.Type type) Creates a new dialog with the specified dialog pane and type.