|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ImageServiceParameters.PIXEL_TYPE>
com.esri.core.map.ImageServiceParameters.PIXEL_TYPE
public static 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 |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageServiceParameters.PIXEL_TYPE C128
public static final ImageServiceParameters.PIXEL_TYPE C64
public static final ImageServiceParameters.PIXEL_TYPE F32
public static final ImageServiceParameters.PIXEL_TYPE F64
public static final ImageServiceParameters.PIXEL_TYPE S16
public static final ImageServiceParameters.PIXEL_TYPE S32
public static final ImageServiceParameters.PIXEL_TYPE S8
public static final ImageServiceParameters.PIXEL_TYPE U1
public static final ImageServiceParameters.PIXEL_TYPE U16
public static final ImageServiceParameters.PIXEL_TYPE U2
public static final ImageServiceParameters.PIXEL_TYPE U32
public static final ImageServiceParameters.PIXEL_TYPE U4
public static final ImageServiceParameters.PIXEL_TYPE U8
public static final ImageServiceParameters.PIXEL_TYPE UNKNOWN
Method Detail |
---|
public static ImageServiceParameters.PIXEL_TYPE[] values()
for (ImageServiceParameters.PIXEL_TYPE c : ImageServiceParameters.PIXEL_TYPE.values()) System.out.println(c);
public static ImageServiceParameters.PIXEL_TYPE valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |