Enum Waveband

  • All Implemented Interfaces:
    Serializable, Comparable<Waveband>

    public enum Waveband
    extends Enum<Waveband>
    An enumeration used to distinguish which wavelength of filter was used to create the image we wish to process.
    Author:
    Dustin Kempton, Data Mining Lab, Georgia State University
    • Enum Constant Detail

      • AIA94

        public static final Waveband AIA94
      • AIA131

        public static final Waveband AIA131
      • AIA171

        public static final Waveband AIA171
      • AIA193

        public static final Waveband AIA193
      • AIA211

        public static final Waveband AIA211
      • AIA304

        public static final Waveband AIA304
      • AIA335

        public static final Waveband AIA335
      • AIA1600

        public static final Waveband AIA1600
      • AIA1700

        public static final Waveband AIA1700
    • Method Detail

      • values

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

        public static Waveband valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null