Enum Class PixelType

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

public enum PixelType extends Enum<PixelType>
Various types of pixel, also known as bit depth, in a raster.
Since:
100.1.0
  • Enum Constant Details

    • FLOAT_32_BIT

      public static final PixelType FLOAT_32_BIT
      Float, 32 bit (Java Float).
      Since:
      100.1.0
    • FLOAT_64_BIT

      public static final PixelType FLOAT_64_BIT
      Float, 64 bit (Java Double).
      Since:
      100.1.0
    • INTEGER_8_BIT

      public static final PixelType INTEGER_8_BIT
      Signed integer, 8 bit (Java Byte}.
      Since:
      100.1.0
    • INTEGER_16_BIT

      public static final PixelType INTEGER_16_BIT
      Signed integer, 16 bit (Java Short).
      Since:
      100.1.0
    • INTEGER_32_BIT

      public static final PixelType INTEGER_32_BIT
      Signed integer, 32 bit (Java Integer).
      Since:
      100.1.0
    • UNSIGNED_1_BIT

      public static final PixelType UNSIGNED_1_BIT
      Unsigned integer, 1 bit (Java Byte).
      Since:
      100.1.0
    • UNSIGNED_2_BIT

      public static final PixelType UNSIGNED_2_BIT
      Unsigned integer, 2 bit (Java Byte).
      Since:
      100.1.0
    • UNSIGNED_4_BIT

      public static final PixelType UNSIGNED_4_BIT
      Unsigned integer, 4 bit (Java Byte).
      Since:
      100.1.0
    • UNSIGNED_8_BIT

      public static final PixelType UNSIGNED_8_BIT
      Unsigned integer, 8 bit (Java Integer).
      Since:
      100.1.0
    • UNSIGNED_16_BIT

      public static final PixelType UNSIGNED_16_BIT
      Unsigned integer, 16 bit (Java Integer).
      Since:
      100.1.0
    • UNSIGNED_32_BIT

      public static final PixelType UNSIGNED_32_BIT
      Unsigned integer, 32 bit (Java Long).
      Since:
      100.1.0
    • UNKNOWN

      public static final PixelType UNKNOWN
      Unknown.
      Since:
      100.1.0
  • Method Details

    • values

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