Package org.opengis.metadata.spatial
Class CellGeometry
- Object
 - 
- CodeList<CellGeometry>
 - 
- CellGeometry
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Comparable<CellGeometry>,ControlledVocabulary
@UML(identifier="MD_CellGeometryCode", specification=ISO_19115) public final class CellGeometry extends CodeList<CellGeometry>
Code indicating whether grid data is point or area.- Since:
 - 2.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 CellGeometryAREAEach cell represents an area.static CellGeometryPOINTEach cell represents a point.static CellGeometrySTRATUMHeight range for a single point vertical profile.static CellGeometryVOXELEach cell represents a volumetric measurement on a regular grid in three dimensional space. 
- 
Method Summary
Modifier and Type Method Description CellGeometry[]family()Returns the list of codes of the same kind than this code list element.static CellGeometryvalueOf(String code)Returns the CellGeometry that matches the given string, or returns a new one if none match it.static CellGeometry[]values()Returns the list ofCellGeometrys. 
 - 
 
- 
- 
Field Detail
- 
POINT
@UML(identifier="point", obligation=CONDITIONAL, specification=ISO_19115) public static final CellGeometry POINT
Each cell represents a point. 
- 
AREA
@UML(identifier="area", obligation=CONDITIONAL, specification=ISO_19115) public static final CellGeometry AREA
Each cell represents an area. 
- 
VOXEL
@UML(identifier="voxel", obligation=CONDITIONAL, specification=ISO_19115) public static final CellGeometry VOXEL
Each cell represents a volumetric measurement on a regular grid in three dimensional space.- Since:
 - 3.1
 
 
- 
STRATUM
@UML(identifier="stratum", obligation=CONDITIONAL, specification=ISO_19115) public static final CellGeometry STRATUM
Height range for a single point vertical profile.- Since:
 - 3.1
 
 
 - 
 
- 
Method Detail
- 
values
public static CellGeometry[] values()
Returns the list ofCellGeometrys.- Returns:
 - the list of codes declared in the current JVM.
 
 
- 
family
public CellGeometry[] 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<CellGeometry>- Returns:
 - all code values for this code list.
 
 
- 
valueOf
public static CellGeometry valueOf(String code)
Returns the CellGeometry 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.
 
 
 - 
 
 -