Package org.opengis.metadata.content
Class PolarizationOrientation
- java.lang.Object
-
- org.opengis.util.CodeList<PolarizationOrientation>
-
- org.opengis.metadata.content.PolarizationOrientation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.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:
- 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 PolarizationOrientation
HORIZONTAL
Polarization of the sensor oriented in the horizontal plane in relation to swath direction.static PolarizationOrientation
LEFT_CIRCULAR
Polarization of the sensor oriented in the left circular plane in relation to swath direction.static PolarizationOrientation
PHI
Polarization of the sensor oriented in the +90 ° and 0 ° perpendicular to swath direction.static PolarizationOrientation
RIGHT_CIRCULAR
Polarization of the sensor oriented in the right circular plane in relation to swath direction.private static long
serialVersionUID
Serial number for compatibility with different versions.static PolarizationOrientation
THETA
Polarization of the sensor oriented in the angle between +90 ° and 0 ° parallel to swath direction.private static java.util.List<PolarizationOrientation>
VALUES
List of all enumerations of this type.static PolarizationOrientation
VERTICAL
Polarization of the sensor oriented in the vertical plane in relation to swath direction.
-
Constructor Summary
Constructors Modifier Constructor Description private
PolarizationOrientation(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 PolarizationOrientation[]
family()
Returns the list of enumerations of the same kind than this enum.static PolarizationOrientation
valueOf(java.lang.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 ofPolarizationOrientation
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<PolarizationOrientation> 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 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.
-
-
Constructor Detail
-
PolarizationOrientation
private PolarizationOrientation(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 PolarizationOrientation[] values()
Returns the list ofPolarizationOrientation
s.- Returns:
- The list of codes declared in the current JVM.
-
family
public PolarizationOrientation[] 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
public static PolarizationOrientation valueOf(java.lang.String code)
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.
-
-