- All Implemented Interfaces:
Serializable
,Comparable<MosaicOperation>
,Constable
Enumerates mosaic operation types. The mosaic operator is used to define how overlapping cells from various rasters
in a mosaic dataset will be resolved in the mosaicked image.
- Since:
- 100.9.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe overlapping areas will be a blend of the cell values that overlap.The overlapping areas will contain the cells from the first raster dataset listed in the mosaic dataset.The overlapping areas will contain the cells from the last raster dataset listed in the mosaic dataset.The overlapping areas will contain the maximum cell values from all the overlapping cells.The overlapping areas will contain the mean cell values from all the overlapping cells.The overlapping areas will contain the minimum cell values from all the overlapping cells.The overlapping areas will contain the total sum of the cell values from all the overlapping cells. -
Method Summary
Modifier and TypeMethodDescriptionstatic MosaicOperation
Returns the enum constant of this class with the specified name.static MosaicOperation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FIRST
The overlapping areas will contain the cells from the first raster dataset listed in the mosaic dataset.- Since:
- 100.9.0
-
LAST
The overlapping areas will contain the cells from the last raster dataset listed in the mosaic dataset.- Since:
- 100.9.0
-
MIN
The overlapping areas will contain the minimum cell values from all the overlapping cells.- Since:
- 100.9.0
-
MAX
The overlapping areas will contain the maximum cell values from all the overlapping cells.- Since:
- 100.9.0
-
MEAN
The overlapping areas will contain the mean cell values from all the overlapping cells.- Since:
- 100.9.0
-
BLEND
The overlapping areas will be a blend of the cell values that overlap. The blend value relies on an algorithm that is weight based and dependent on the distance from the cells to the edge within the overlapping area.- Since:
- 100.9.0
-
SUM
The overlapping areas will contain the total sum of the cell values from all the overlapping cells.- Since:
- 100.9.0
-
-
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
-