Enum Icon

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

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

      • MAIN

        public static final Icon MAIN
      • FILE_OPEN

        public static final Icon FILE_OPEN
      • EXIT

        public static final Icon EXIT
      • SAVE

        public static final Icon SAVE
      • MADX

        public static final Icon MADX
      • SELECT_RANGE

        public static final Icon SELECT_RANGE
      • VIEW_DATA

        public static final Icon VIEW_DATA
      • SINE_FIT

        public static final Icon SINE_FIT
      • CALC_ONCE

        public static final Icon CALC_ONCE
      • CALC_ONCE_DISABLED

        public static final Icon CALC_ONCE_DISABLED
      • SPLASH

        public static final Icon SPLASH
      • ABOUT

        public static final Icon ABOUT
    • 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()