org.geotools.arcsde.raster.info
Enum InterpolationType

Object
  extended by Enum<InterpolationType>
      extended by InterpolationType
All Implemented Interfaces:
Serializable, Comparable<InterpolationType>

public enum InterpolationType
extends Enum<InterpolationType>

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

Since:
2.5.4
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(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 Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class 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(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

getSeInterpolationType

public int getSeInterpolationType()

valueOf

public static InterpolationType valueOf(int seInterpolationType)


Copyright © 1996-2014 Geotools. All Rights Reserved.