Package org.opengis.metadata.content
Class BandDefinition
- Object
-
- CodeList<BandDefinition>
-
- BandDefinition
-
- All Implemented Interfaces:
Serializable,Comparable<BandDefinition>,ControlledVocabulary
@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
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static BandDefinitionEQUIVALENT_WIDTHWidth 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 BandDefinitionFIFTY_PERCENTFull spectral width of a spectral power density measured at 50% of its peak height.static BandDefinitionHALF_MAXIMUMWidth 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 BandDefinitionONE_OVER_EWidth of a distribution equal to the distance between the outer two points on the distribution having power level 1/e that of the peak.static BandDefinitionTHREE_DBWidth of a distribution equal to the distance between the outer two points on the distribution having power level half of that at the peak.
-
Method Summary
Modifier and Type Method Description BandDefinition[]family()Returns the list of codes of the same kind than this code list element.static BandDefinitionvalueOf(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 ofBandDefinitions.
-
-
-
Field Detail
-
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.- TODO:
- the same as the documentation for
HALF_MAXIMUM.
-
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.- TODO:
- the same as the documentation for
THREE_DB.
-
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.
-
-
Method Detail
-
values
public static BandDefinition[] values()
Returns the list ofBandDefinitions.- Returns:
- the list of codes declared in the current JVM.
-
family
public BandDefinition[] family()
Returns the list of codes of the same kind than this code list element. Invoking this method is equivalent to invokingvalues(), except that this method can be invoked on an instance of the parentCodeListclass.- Specified by:
familyin interfaceControlledVocabulary- Specified by:
familyin classCodeList<BandDefinition>- Returns:
- all code values for this code list.
-
valueOf
public static BandDefinition valueOf(String code)
Returns the band definition that matches the given string, or returns a new one if none match it. More specifically, this methods returns the first instance for whichname().equals(code)returnstrue. If no existing instance is found, then a new one is created for the given name.- Parameters:
code- the name of the code to fetch or to create.- Returns:
- a code matching the given name.
-
-