Enum Dialogs

  • All Implemented Interfaces:
    Loadable, java.io.Serializable, java.lang.Comparable<Dialogs>

    public enum Dialogs
    extends java.lang.Enum<Dialogs>
    implements Loadable
    • 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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • BATCH_SAVE

        public static final Dialogs BATCH_SAVE
      • MULTI_REMOVE

        public static final Dialogs MULTI_REMOVE
    • 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 name
        java.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 interface Loadable
        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 interface Loadable
        Returns:
        set of stylesheets associated with the FXML file.
      • getIcon

        public javafx.scene.image.Image getIcon()
        Description copied from interface: Loadable
        Specifies the icon to set as favicon (only required when the Loadable is loaded into a window)
        Specified by:
        getIcon in interface Loadable
        Returns:
        icon to set as favicon.