edu.jhu.ece.iacl.algorithms.volume
Enum IsotropicResample.InterpolationMethod

java.lang.Object
  extended by java.lang.Enum<IsotropicResample.InterpolationMethod>
      extended by edu.jhu.ece.iacl.algorithms.volume.IsotropicResample.InterpolationMethod
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IsotropicResample.InterpolationMethod>
Enclosing class:
IsotropicResample

public static enum IsotropicResample.InterpolationMethod
extends java.lang.Enum<IsotropicResample.InterpolationMethod>


Enum Constant Summary
BILINEAR
           
BSPLINE3
           
BSPLINE4
           
CUBIC_LAGRANGIAN
           
HEPTIC_LAGRANGIAN
           
NEAREST_NEIGHBOR
           
QUINTIC_LAGRANGIAN
           
TRILINEAR
           
WSINC
           
 
Method Summary
static IsotropicResample.InterpolationMethod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IsotropicResample.InterpolationMethod[] 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

TRILINEAR

public static final IsotropicResample.InterpolationMethod TRILINEAR

BILINEAR

public static final IsotropicResample.InterpolationMethod BILINEAR

NEAREST_NEIGHBOR

public static final IsotropicResample.InterpolationMethod NEAREST_NEIGHBOR

BSPLINE3

public static final IsotropicResample.InterpolationMethod BSPLINE3

BSPLINE4

public static final IsotropicResample.InterpolationMethod BSPLINE4

CUBIC_LAGRANGIAN

public static final IsotropicResample.InterpolationMethod CUBIC_LAGRANGIAN

QUINTIC_LAGRANGIAN

public static final IsotropicResample.InterpolationMethod QUINTIC_LAGRANGIAN

HEPTIC_LAGRANGIAN

public static final IsotropicResample.InterpolationMethod HEPTIC_LAGRANGIAN

WSINC

public static final IsotropicResample.InterpolationMethod WSINC
Method Detail

values

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

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

valueOf

public static IsotropicResample.InterpolationMethod 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