Package org.opengis.metadata.spatial
Class PixelOrientation
- All Implemented Interfaces:
Serializable
,Comparable<PixelOrientation>
@UML(identifier="MD_PixelOrientationCode",
specification=ISO_19115)
public final class PixelOrientation
extends CodeList<PixelOrientation>
Point in a pixel corresponding to the Earth location of the pixel.
This code list is restricted to the two-dimensional case. A similar code
list, PixelInCell
, can be used for
n-dimensional grid cell.
- Since:
- 2.0
- 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 PixelOrientation
Point in a pixel corresponding to the Earth location of the pixel.static final PixelOrientation
The corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value.static final PixelOrientation
Next corner counterclockwise from the lower left.private static final long
Serial number for compatibility with different versions.static final PixelOrientation
Next corner counterclockwise from the upper right.static final PixelOrientation
Next corner counterclockwise from the lower right.private static final List
<PixelOrientation> List of all enumerations of this type. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
PixelOrientation
(String name) 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 PixelOrientation
Returns the pixel orientation that matches the given string, or returns a new one if none match it.static PixelOrientation[]
values()
Returns the list ofPixelOrientation
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. -
CENTER
@UML(identifier="center", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation CENTERPoint in a pixel corresponding to the Earth location of the pixel.- See Also:
-
LOWER_LEFT
@UML(identifier="lowerLeft", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation LOWER_LEFTThe corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value.- See Also:
-
LOWER_RIGHT
@UML(identifier="lowerRight", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation LOWER_RIGHTNext corner counterclockwise from the lower left. -
UPPER_RIGHT
@UML(identifier="upperRight", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation UPPER_RIGHTNext corner counterclockwise from the lower right. -
UPPER_LEFT
@UML(identifier="upperLeft", obligation=CONDITIONAL, specification=ISO_19115) public static final PixelOrientation UPPER_LEFTNext corner counterclockwise from the upper right.
-
-
Constructor Details
-
PixelOrientation
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 ofPixelOrientation
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<PixelOrientation>
- Returns:
- The codes of the same kind than this code.
-
valueOf
Returns the pixel orientation 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.
-