Package org.opengis.metadata.content
Class BandDefinition
- java.lang.Object
-
- org.opengis.util.CodeList<BandDefinition>
-
- org.opengis.metadata.content.BandDefinition
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BandDefinition>
@UML(identifier="MI_BandDefinition", specification=ISO_19115_2) public final class BandDefinition extends CodeList<BandDefinition>
Designation of criterion for defining maximum and minimum wavelengths for a spectral band.- Since:
- 2.3
- Version:
- 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static BandDefinition
EQUIVALENT_WIDTH
Width of a band with full sensitivity or absorption at every wavelength that detects or absorbs the same amount of energy as the band described.static BandDefinition
FIFTY_PERCENT
Full spectral width of a spectral power density measured at 50% of its peak height.static BandDefinition
HALF_MAXIMUM
Width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak.static BandDefinition
ONE_OVER_E
Width of a distribution equal to the distance between the outer two points on the distribution having power level 1/e that of the peak.private static long
serialVersionUID
Serial number for compatibility with different versions.static BandDefinition
THREE_DB
Width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak.private static java.util.List<BandDefinition>
VALUES
List of all enumerations of this type.
-
Constructor Summary
Constructors Modifier Constructor Description private
BandDefinition(java.lang.String name)
Constructs an enum with the given name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BandDefinition[]
family()
Returns the list of enumerations of the same kind than this enum.static BandDefinition
valueOf(java.lang.String code)
Returns the band definition that matches the given string, or returns a new one if none match it.static BandDefinition[]
values()
Returns the list ofBandDefinition
s.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for compatibility with different versions.- See Also:
- Constant Field Values
-
VALUES
private static final java.util.List<BandDefinition> VALUES
List of all enumerations of this type. Must be declared before any enum declaration.
-
THREE_DB
@UML(identifier="3dB", obligation=CONDITIONAL, specification=ISO_19115_2) public static final BandDefinition THREE_DB
Width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak.
-
HALF_MAXIMUM
@UML(identifier="halfMaximum", obligation=CONDITIONAL, specification=ISO_19115_2) public static final BandDefinition HALF_MAXIMUM
Width of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak.
-
FIFTY_PERCENT
@UML(identifier="fiftyPercent", obligation=CONDITIONAL, specification=ISO_19115_2) public static final BandDefinition FIFTY_PERCENT
Full spectral width of a spectral power density measured at 50% of its peak height.
-
ONE_OVER_E
@UML(identifier="oneOverE", obligation=CONDITIONAL, specification=ISO_19115_2) public static final BandDefinition ONE_OVER_E
Width of a distribution equal to the distance between the outer two points on the distribution having power level 1/e that of the peak.
-
EQUIVALENT_WIDTH
@UML(identifier="equivalentWidth", obligation=CONDITIONAL, specification=ISO_19115_2) public static final BandDefinition EQUIVALENT_WIDTH
Width of a band with full sensitivity or absorption at every wavelength that detects or absorbs the same amount of energy as the band described.
-
-
Constructor Detail
-
BandDefinition
private BandDefinition(java.lang.String name)
Constructs an enum with the given name. The new enum is automatically added to the list returned byvalues()
.- Parameters:
name
- The enum name. This name must not be in use by an other enum of this type.
-
-
Method Detail
-
values
public static BandDefinition[] values()
Returns the list ofBandDefinition
s.- Returns:
- The list of codes declared in the current JVM.
-
family
public BandDefinition[] family()
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<BandDefinition>
- Returns:
- The codes of the same kind than this code.
-
valueOf
public static BandDefinition valueOf(java.lang.String code)
Returns the band definition that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-
-