Package org.opengis.metadata.content
Class PolarizationOrientation
- Object
-
- CodeList<PolarizationOrientation>
-
- PolarizationOrientation
-
- All Implemented Interfaces:
Serializable,Comparable<PolarizationOrientation>,ControlledVocabulary
@UML(identifier="MI_PolarisationOrientationCode", specification=ISO_19115_2) public final class PolarizationOrientation extends CodeList<PolarizationOrientation>
Polarization of the antenna relative to the waveform.Upcoming API change
This class will be renamedPolarisationOrientationin GeoAPI 4.0 for compliance with ISO 19115-2:2019.- Since:
- 3.0
- 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 PolarizationOrientationHORIZONTALPolarization of the sensor oriented in the horizontal plane in relation to swath direction.static PolarizationOrientationLEFT_CIRCULARPolarization of the sensor oriented in the left circular plane in relation to swath direction.static PolarizationOrientationPHIPolarization of the sensor oriented in the +90 ° and 0 ° perpendicular to swath direction.static PolarizationOrientationRIGHT_CIRCULARPolarization of the sensor oriented in the right circular plane in relation to swath direction.static PolarizationOrientationTHETAPolarization of the sensor oriented in the angle between +90 ° and 0 ° parallel to swath direction.static PolarizationOrientationVERTICALPolarization of the sensor oriented in the vertical plane in relation to swath direction.
-
Method Summary
Modifier and Type Method Description PolarizationOrientation[]family()Returns the list of codes of the same kind than this code list element.static PolarizationOrientationvalueOf(String code)Returns the transfer function type that matches the given string, or returns a new one if none match it.static PolarizationOrientation[]values()Returns the list ofPolarisationOrientations.
-
-
-
Field Detail
-
HORIZONTAL
@UML(identifier="horizontal", obligation=CONDITIONAL, specification=ISO_19115_2) public static final PolarizationOrientation HORIZONTAL
Polarization of the sensor oriented in the horizontal plane in relation to swath direction.
-
VERTICAL
@UML(identifier="vertical", obligation=CONDITIONAL, specification=ISO_19115_2) public static final PolarizationOrientation VERTICAL
Polarization of the sensor oriented in the vertical plane in relation to swath direction.
-
LEFT_CIRCULAR
@UML(identifier="leftCircular", obligation=CONDITIONAL, specification=ISO_19115_2) public static final PolarizationOrientation LEFT_CIRCULAR
Polarization of the sensor oriented in the left circular plane in relation to swath direction.
-
RIGHT_CIRCULAR
@UML(identifier="rightCircular", obligation=CONDITIONAL, specification=ISO_19115_2) public static final PolarizationOrientation RIGHT_CIRCULAR
Polarization of the sensor oriented in the right circular plane in relation to swath direction.
-
THETA
@UML(identifier="theta", obligation=CONDITIONAL, specification=ISO_19115_2) public static final PolarizationOrientation THETA
Polarization of the sensor oriented in the angle between +90 ° and 0 ° parallel to swath direction.
-
PHI
@UML(identifier="phi", obligation=CONDITIONAL, specification=ISO_19115_2) public static final PolarizationOrientation PHI
Polarization of the sensor oriented in the +90 ° and 0 ° perpendicular to swath direction.
-
-
Method Detail
-
values
public static PolarizationOrientation[] values()
Returns the list ofPolarisationOrientations.- Returns:
- the list of codes declared in the current JVM.
-
family
public PolarizationOrientation[] 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<PolarizationOrientation>- Returns:
- all code values for this code list.
-
valueOf
public static PolarizationOrientation valueOf(String code)
Returns the transfer function type 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.
-
-