Uses of Enum
javafx.scene.control.Alert.AlertType
Packages that use Alert.AlertType
-
Uses of Alert.AlertType in javafx.scene.control
Methods in javafx.scene.control that return Alert.AlertTypeModifier and TypeMethodDescriptionfinal Alert.AlertType
Alert.getAlertType()
Gets the value of thealertType
property.static Alert.AlertType
Returns the enum constant of this type with the specified name.static Alert.AlertType[]
Alert.AlertType.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in javafx.scene.control that return types with arguments of type Alert.AlertTypeModifier and TypeMethodDescriptionfinal ObjectProperty<Alert.AlertType>
Alert.alertTypeProperty()
When creating an Alert instance, users must pass in anAlert.AlertType
enumeration value.Methods in javafx.scene.control with parameters of type Alert.AlertTypeModifier and TypeMethodDescriptionfinal void
Alert.setAlertType
(Alert.AlertType alertType) Sets the value of thealertType
property.Constructors in javafx.scene.control with parameters of type Alert.AlertTypeModifierConstructorDescriptionAlert
(Alert.AlertType alertType) Creates an alert with the given AlertType (refer to theAlert.AlertType
documentation for clarification over which one is most appropriate).Alert
(Alert.AlertType alertType, String contentText, ButtonType... buttons) Creates an alert with the given contentText, ButtonTypes, and AlertType (refer to theAlert.AlertType
documentation for clarification over which one is most appropriate).