com.esri.arcgisws
Class RstResamplingTypes

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

public final class RstResamplingTypes
extends Enum

Java class for rstResamplingTypes.

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

 <simpleType name="rstResamplingTypes">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="RSP_NearestNeighbor"/>
     <enumeration value="RSP_BilinearInterpolation"/>
     <enumeration value="RSP_CubicConvolution"/>
     <enumeration value="RSP_Majority"/>
   </restriction>
 </simpleType>
 
Different methods to perform raster resampling.

See Also:
Serialized Form

Field Summary
static RstResamplingTypes RSP_BilinearInterpolation
           
static RstResamplingTypes RSP_CubicConvolution
           
static RstResamplingTypes RSP_Majority
           
static RstResamplingTypes RSP_NearestNeighbor
           
 
Constructor Summary
RstResamplingTypes()
           
 
Method Summary
static RstResamplingTypes fromString(String value)
          Deprecated. 
static RstResamplingTypes fromValue(String v)
           
 String getValue()
           
 String toString()
           
static RstResamplingTypes valueOf(String name)
           
static RstResamplingTypes[] 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

RSP_NearestNeighbor

public static final RstResamplingTypes RSP_NearestNeighbor

RSP_BilinearInterpolation

public static final RstResamplingTypes RSP_BilinearInterpolation

RSP_CubicConvolution

public static final RstResamplingTypes RSP_CubicConvolution

RSP_Majority

public static final RstResamplingTypes RSP_Majority
Constructor Detail

RstResamplingTypes

public RstResamplingTypes()
Method Detail

values

public static final RstResamplingTypes[] values()

valueOf

public static RstResamplingTypes valueOf(String name)

getValue

public String getValue()

fromValue

public static RstResamplingTypes fromValue(String v)

fromString

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


toString

public String toString()
Overrides:
toString in class Enum