- All Implemented Interfaces:
- Serializable,- Comparable<Alert.AlertType>,- Constable
- Enclosing class:
- Alert
public static enum Alert.AlertType extends Enum<Alert.AlertType>
An enumeration containing the available, pre-built alert types that
 the 
Alert class can use to pre-populate various properties.- Since:
- JavaFX 8u40
- 
Nested Class SummaryNested classes/interfaces declared in class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants Enum Constant Description CONFIRMATIONThe CONFIRMATION alert type configures the Alert dialog to appear in a way that suggests the content of the dialog is seeking confirmation from the user.ERRORThe ERROR alert type configures the Alert dialog to appear in a way that suggests that something has gone wrong.INFORMATIONThe INFORMATION alert type configures the Alert dialog to appear in a way that suggests the content of the dialog is informing the user of a piece of information.NONEThe NONE alert type has the effect of not setting any default properties in the Alert.WARNINGThe WARNING alert type configures the Alert dialog to appear in a way that suggests the content of the dialog is warning the user about some fact or action.
- 
Method SummaryModifier and Type Method Description static Alert.AlertTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Alert.AlertType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
NONEThe NONE alert type has the effect of not setting any default properties in the Alert.
- 
INFORMATIONThe INFORMATION alert type configures the Alert dialog to appear in a way that suggests the content of the dialog is informing the user of a piece of information. This includes an 'information' image, an appropriate title and header, and just an OK button for the user to click on to dismiss the dialog.
- 
WARNINGThe WARNING alert type configures the Alert dialog to appear in a way that suggests the content of the dialog is warning the user about some fact or action. This includes a 'warning' image, an appropriate title and header, and just an OK button for the user to click on to dismiss the dialog.
- 
CONFIRMATIONThe CONFIRMATION alert type configures the Alert dialog to appear in a way that suggests the content of the dialog is seeking confirmation from the user. This includes a 'confirmation' image, an appropriate title and header, and both OK and Cancel buttons for the user to click on to dismiss the dialog.
- 
ERRORThe ERROR alert type configures the Alert dialog to appear in a way that suggests that something has gone wrong. This includes an 'error' image, an appropriate title and header, and just an OK button for the user to click on to dismiss the dialog.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-