- All Implemented Interfaces:
Serializable
,Comparable<PixelInCell>
@UML(identifier="CD_PixelInCell",
specification=ISO_19111)
public final class PixelInCell
extends CodeList<PixelInCell>
Specification of the way the image grid is associated with the image data attributes.
This code list is similar to PixelOrientation
except that the latter is more clearly restricted to the two-dimensional case.
- Since:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final PixelInCell
The origin of the image coordinate system is the centre of a grid cell or image pixel.static final PixelInCell
The origin of the image coordinate system is the corner of a grid cell, or half-way between the centres of adjacent image pixels. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind as this enum.static PixelInCell
Returns the pixel in cell that matches the given string, or returns a new one if none match it.static PixelInCell[]
values()
Returns the list ofPixelInCell
s.
-
Field Details
-
CELL_CENTER
@UML(identifier="cell center", obligation=CONDITIONAL, specification=ISO_19111) public static final PixelInCell CELL_CENTERThe origin of the image coordinate system is the centre of a grid cell or image pixel.- See Also:
-
CELL_CORNER
@UML(identifier="cell corner", obligation=CONDITIONAL, specification=ISO_19111) public static final PixelInCell CELL_CORNERThe origin of the image coordinate system is the corner of a grid cell, or half-way between the centres of adjacent image pixels.- See Also:
-
-
Method Details
-
values
Returns the list ofPixelInCell
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind as this enum.- Specified by:
family
in classCodeList<PixelInCell>
- Returns:
- The codes of the same kind as this code.
-
valueOf
Returns the pixel in cell 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.
-