Enum Class MosaicOperation

java.lang.Object
java.lang.Enum<MosaicOperation>
com.esri.arcgisruntime.raster.MosaicOperation
All Implemented Interfaces:
Serializable, Comparable<MosaicOperation>, Constable

public enum MosaicOperation extends Enum<MosaicOperation>
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 Constants
    Enum Constant
    Description
    The 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 Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • FIRST

      public static final MosaicOperation FIRST
      The overlapping areas will contain the cells from the first raster dataset listed in the mosaic dataset.
      Since:
      100.9.0
    • LAST

      public static final MosaicOperation LAST
      The overlapping areas will contain the cells from the last raster dataset listed in the mosaic dataset.
      Since:
      100.9.0
    • MIN

      public static final MosaicOperation MIN
      The overlapping areas will contain the minimum cell values from all the overlapping cells.
      Since:
      100.9.0
    • MAX

      public static final MosaicOperation MAX
      The overlapping areas will contain the maximum cell values from all the overlapping cells.
      Since:
      100.9.0
    • MEAN

      public static final MosaicOperation MEAN
      The overlapping areas will contain the mean cell values from all the overlapping cells.
      Since:
      100.9.0
    • BLEND

      public static final MosaicOperation 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

      public static final MosaicOperation 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

      public static MosaicOperation[] 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

      public static MosaicOperation valueOf(String name)
      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 name
      NullPointerException - if the argument is null