com.esri.core.map
Enum ImageServiceParameters.PIXEL_TYPE

java.lang.Object
  extended by java.lang.Enum<ImageServiceParameters.PIXEL_TYPE>
      extended by com.esri.core.map.ImageServiceParameters.PIXEL_TYPE
All Implemented Interfaces:
Serializable, Comparable<ImageServiceParameters.PIXEL_TYPE>
Enclosing class:
ImageServiceParameters

public static enum ImageServiceParameters.PIXEL_TYPE
extends Enum<ImageServiceParameters.PIXEL_TYPE>

The pixel type, also known as data type, pertains to the type of values stored in the raster, such as signed integer, unsigned integer, or floating point. Integers are whole numbers, whereas floating points have decimals.

Values: C128 | C64 | F32 | F64 | S16 | S32 | S8 | U1 | U16 | U2 | U32 | U4 | U8 | UNKNOWN


Enum Constant Summary
C128
          Pixel type: C128
C64
          Pixel type: C64
F32
          Pixel type: F32
F64
          Pixel type: F64
S16
          Pixel type: S16
S32
          Pixel type: S32
S8
          Pixel type: S8
U1
          Pixel type: U1
U16
          Pixel type: U16
U2
          Pixel type: U2
U32
          Pixel type: U32
U4
          Pixel type: U4
U8
          Pixel type: U8
UNKNOWN
          Pixel type: UNKNOWN
 
Method Summary
static ImageServiceParameters.PIXEL_TYPE valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ImageServiceParameters.PIXEL_TYPE[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

C128

public static final ImageServiceParameters.PIXEL_TYPE C128
Pixel type: C128


C64

public static final ImageServiceParameters.PIXEL_TYPE C64
Pixel type: C64


F32

public static final ImageServiceParameters.PIXEL_TYPE F32
Pixel type: F32


F64

public static final ImageServiceParameters.PIXEL_TYPE F64
Pixel type: F64


S16

public static final ImageServiceParameters.PIXEL_TYPE S16
Pixel type: S16


S32

public static final ImageServiceParameters.PIXEL_TYPE S32
Pixel type: S32


S8

public static final ImageServiceParameters.PIXEL_TYPE S8
Pixel type: S8


U1

public static final ImageServiceParameters.PIXEL_TYPE U1
Pixel type: U1


U16

public static final ImageServiceParameters.PIXEL_TYPE U16
Pixel type: U16


U2

public static final ImageServiceParameters.PIXEL_TYPE U2
Pixel type: U2


U32

public static final ImageServiceParameters.PIXEL_TYPE U32
Pixel type: U32


U4

public static final ImageServiceParameters.PIXEL_TYPE U4
Pixel type: U4


U8

public static final ImageServiceParameters.PIXEL_TYPE U8
Pixel type: U8


UNKNOWN

public static final ImageServiceParameters.PIXEL_TYPE UNKNOWN
Pixel type: UNKNOWN

Method Detail

values

public static ImageServiceParameters.PIXEL_TYPE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ImageServiceParameters.PIXEL_TYPE c : ImageServiceParameters.PIXEL_TYPE.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ImageServiceParameters.PIXEL_TYPE valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.