Package org.opengis.metadata.content
Class PolarizationOrientation
java.lang.Object
org.opengis.util.CodeList<PolarizationOrientation>
org.opengis.metadata.content.PolarizationOrientation
- All Implemented Interfaces:
Serializable
,Comparable<PolarizationOrientation>
@UML(identifier="MI_PolarizationOrientationCode",
specification=ISO_19115_2)
public final class PolarizationOrientation
extends CodeList<PolarizationOrientation>
Polarization of the antenna relative to the waveform.
- Since:
- 2.3
- Version:
- 3.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PolarizationOrientation
Polarization of the sensor oriented in the horizontal plane in relation to swath direction.static final PolarizationOrientation
Polarization of the sensor oriented in the left circular plane in relation to swath direction.static final PolarizationOrientation
Polarization of the sensor oriented in the +90 ° and 0 ° perpendicular to swath direction.static final PolarizationOrientation
Polarization of the sensor oriented in the right circular plane in relation to swath direction.private static final long
Serial number for compatibility with different versions.static final PolarizationOrientation
Polarization of the sensor oriented in the angle between +90 ° and 0 ° parallel to swath direction.private static final List
<PolarizationOrientation> List of all enumerations of this type.static final PolarizationOrientation
Polarization of the sensor oriented in the vertical plane in relation to swath direction. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Constructs an enum with the given name. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind than this enum.static PolarizationOrientation
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 ofPolarizationOrientation
s.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for compatibility with different versions.- See Also:
-
VALUES
List of all enumerations of this type. Must be declared before any enum declaration. -
HORIZONTAL
@UML(identifier="horizontal", obligation=CONDITIONAL, specification=ISO_19115_2) public static final PolarizationOrientation HORIZONTALPolarization 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 VERTICALPolarization 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_CIRCULARPolarization 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_CIRCULARPolarization 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 THETAPolarization 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 PHIPolarization of the sensor oriented in the +90 ° and 0 ° perpendicular to swath direction.
-
-
Constructor Details
-
PolarizationOrientation
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 Details
-
values
Returns the list ofPolarizationOrientation
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<PolarizationOrientation>
- Returns:
- The codes of the same kind than this code.
-
valueOf
Returns the transfer function type 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.
-