com.esri.arcgisws
Class RstPixelType

java.lang.Object
  extended by java.lang.Enum
      extended by com.esri.arcgisws.RstPixelType
All Implemented Interfaces:
Serializable, Comparable

public final class RstPixelType
extends Enum

Java class for rstPixelType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="rstPixelType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="U1"/>
     <enumeration value="U2"/>
     <enumeration value="U4"/>
     <enumeration value="U8"/>
     <enumeration value="S8"/>
     <enumeration value="U16"/>
     <enumeration value="S16"/>
     <enumeration value="U32"/>
     <enumeration value="S32"/>
     <enumeration value="F32"/>
     <enumeration value="F64"/>
     <enumeration value="C64"/>
     <enumeration value="C128"/>
     <enumeration value="UNKNOWN"/>
   </restriction>
 </simpleType>
 
Supported raster pixel types.

See Also:
Serialized Form

Field Summary
static RstPixelType C128
           
static RstPixelType C64
           
static RstPixelType F32
           
static RstPixelType F64
           
static RstPixelType S16
           
static RstPixelType S32
           
static RstPixelType S8
           
static RstPixelType U1
           
static RstPixelType U16
           
static RstPixelType U2
           
static RstPixelType U32
           
static RstPixelType U4
           
static RstPixelType U8
           
static RstPixelType UNKNOWN
           
 
Constructor Summary
RstPixelType()
           
 
Method Summary
static RstPixelType fromString(String value)
          Deprecated. 
static RstPixelType fromValue(String v)
           
 String getValue()
           
 String toString()
           
static RstPixelType valueOf(String name)
           
static RstPixelType[] values()
           
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

U1

public static final RstPixelType U1

U2

public static final RstPixelType U2

U4

public static final RstPixelType U4

U8

public static final RstPixelType U8

S8

public static final RstPixelType S8

U16

public static final RstPixelType U16

S16

public static final RstPixelType S16

U32

public static final RstPixelType U32

S32

public static final RstPixelType S32

F32

public static final RstPixelType F32

F64

public static final RstPixelType F64

C64

public static final RstPixelType C64

C128

public static final RstPixelType C128

UNKNOWN

public static final RstPixelType UNKNOWN
Constructor Detail

RstPixelType

public RstPixelType()
Method Detail

values

public static final RstPixelType[] values()

valueOf

public static RstPixelType valueOf(String name)

getValue

public String getValue()

fromValue

public static RstPixelType fromValue(String v)

fromString

@Deprecated
public static RstPixelType fromString(String value)
Deprecated. 


toString

public String toString()
Overrides:
toString in class Enum