org.geotools.arcsde.raster.info
Enum InterpolationType

java.lang.Object
  extended by java.lang.Enum<InterpolationType>
      extended by org.geotools.arcsde.raster.info.InterpolationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<InterpolationType>

public enum InterpolationType
extends java.lang.Enum<InterpolationType>

An enumeration that mirrors the different possible raster interpolation types in Arcsde (ie, SeRaster#SE_INTERPOLATION_*)

Since:
2.5.4
Version:
$Id: InterpolationType.java 34355 2009-11-09 19:05:33Z groldan $
Author:
Gabriel Roldan (OpenGeo)

Enum Constant Summary
INTERPOLATION_BICUBIC
           
INTERPOLATION_BILINEAR
           
INTERPOLATION_NEAREST
           
INTERPOLATION_NONE
           
 
Method Summary
 int getSeInterpolationType()
           
static InterpolationType valueOf(int seInterpolationType)
           
static InterpolationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static InterpolationType[] 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

INTERPOLATION_BICUBIC

public static final InterpolationType INTERPOLATION_BICUBIC

INTERPOLATION_BILINEAR

public static final InterpolationType INTERPOLATION_BILINEAR

INTERPOLATION_NEAREST

public static final InterpolationType INTERPOLATION_NEAREST

INTERPOLATION_NONE

public static final InterpolationType INTERPOLATION_NONE
Method Detail

values

public static InterpolationType[] 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 (InterpolationType c : InterpolationType.values())
    System.out.println(c);

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

valueOf

public static InterpolationType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getSeInterpolationType

public int getSeInterpolationType()

valueOf

public static InterpolationType valueOf(int seInterpolationType)


Copyright © 1996-2010 Geotools. All Rights Reserved.