Enum Dialogs
- java.lang.Object
-
- java.lang.Enum<Dialogs>
-
- de.hshannover.dqgui.core.configuration.Dialogs
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BATCH_SAVE
MULTI_REMOVE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getFxmlLocation()
Specifies an absolute location to the associated FXML file starting at the classpath root.javafx.scene.image.Image
getIcon()
Specifies the icon to set as favicon (only required when the Loadable is loaded into a window)java.util.List<java.lang.String>
getStyleSheets()
Specifies a set of stylesheets associated with the FXML file starting at the classpath root.static Dialogs
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Dialogs[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static Dialogs[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Dialogs c : Dialogs.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dialogs valueOf(java.lang.String name)
Returns 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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getFxmlLocation
public java.lang.String getFxmlLocation()
Description copied from interface:Loadable
Specifies an absolute location to the associated FXML file starting at the classpath root.- Specified by:
getFxmlLocation
in interfaceLoadable
- Returns:
- absolute location of FXML file in the current classpath.
-
getStyleSheets
public java.util.List<java.lang.String> getStyleSheets()
Description copied from interface:Loadable
Specifies a set of stylesheets associated with the FXML file starting at the classpath root.- Specified by:
getStyleSheets
in interfaceLoadable
- Returns:
- set of stylesheets associated with the FXML file.
-
-