Package org.geotools.gce.imagemosaic
Enum Class RATGeometries
- All Implemented Interfaces:
Serializable,Comparable<RATGeometries>,Constable
How the mosaic handles a geometry column of a raster attribute table whose value differs between granules. A source
clipping the geometry to each granule, as S-102 does, makes that the normal case rather than an error.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic RATGeometriesfromParameter(String value) Reads the value of theAttributeTableGeometriesindexer property,OFFwhen it is not set.static RATGeometriesReturns the enum constant of this class with the specified name.static RATGeometries[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
Leaves the cell empty. -
MERGE
Unions the granule geometries, which costs time and memory on the large ones. -
COLLECT
Treats the column like any other, so granules that disagree stop the collection.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
fromParameter
Reads the value of theAttributeTableGeometriesindexer property,OFFwhen it is not set.
-