Enum BandName

java.lang.Object
java.lang.Enum<BandName>
org.apache.sis.storage.landsat.BandName
All Implemented Interfaces:
Serializable, Comparable<BandName>, java.lang.constant.Constable

enum BandName extends Enum<BandName>
Names of Landsat bands.
Since:
1.1
Version:
1.1
  • Enum Constant Details

    • COASTAL_AEROSOL

      public static final BandName COASTAL_AEROSOL
    • BLUE

      public static final BandName BLUE
    • GREEN

      public static final BandName GREEN
    • RED

      public static final BandName RED
    • NEAR_INFRARED

      public static final BandName NEAR_INFRARED
    • SWIR1

      public static final BandName SWIR1
    • SWIR2

      public static final BandName SWIR2
    • PANCHROMATIC

      public static final BandName PANCHROMATIC
    • CIRRUS

      public static final BandName CIRRUS
    • TIRS1

      public static final BandName TIRS1
    • TIRS2

      public static final BandName TIRS2
  • Field Details

    • group

      final BandGroupName group
      Group in which this band belong.
    • title

      final org.opengis.util.InternationalString title
      Localized name of Landsat band.
    • wavelength

      final short wavelength
      Peak response wavelength for the Landsat band, in nanometres. If this band does not contains measurements in electromagnetic spectrum, then this value is set to zero.
  • Constructor Details

    • BandName

      private BandName(BandGroupName group, String name, short wavelength)
      Creates a new enumeration value.
  • Method Details

    • values

      public static BandName[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static BandName 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