Enum Icon

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

    public enum Icon
    extends java.lang.Enum<Icon>
    • Enum Constant Detail

      • MADX

        public static final Icon MADX
      • JMAD

        public static final Icon JMAD
      • SPLASH

        public static final Icon SPLASH
      • REFRESH

        public static final Icon REFRESH
      • DELETE

        public static final Icon DELETE
      • CHART

        public static final Icon CHART
      • EXIT

        public static final Icon EXIT
      • EXPORT

        public static final Icon EXPORT
      • EXPORT_URI

        public static final Icon EXPORT_URI
      • NEW

        public static final Icon NEW
      • OPEN_REPO

        public static final Icon OPEN_REPO
      • OPEN_URI

        public static final Icon OPEN_URI
      • OPEN_FILE

        public static final Icon OPEN_FILE
      • SAVE

        public static final Icon SAVE
    • Method Detail

      • values

        public static Icon[] 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 (Icon c : Icon.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Icon 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
      • getImageIcon

        public javax.swing.ImageIcon getImageIcon()