edu.jhu.ece.iacl.algorithms.volume
Enum TransformVolume.Interpolation

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

public static enum TransformVolume.Interpolation
extends java.lang.Enum<TransformVolume.Interpolation>


Enum Constant Summary
Bspline_3rd_order
           
Bspline_4th_order
           
Cubic_Lagrangian
           
Heptic_Lagrangian
           
Nearest_Neighbor
           
Quintic_Lagrangian
           
Trilinear
           
Windowed_sinc
           
 
Method Summary
static TransformVolume.Interpolation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TransformVolume.Interpolation[] 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 TransformVolume.Interpolation Trilinear

Bspline_3rd_order

public static final TransformVolume.Interpolation Bspline_3rd_order

Bspline_4th_order

public static final TransformVolume.Interpolation Bspline_4th_order

Cubic_Lagrangian

public static final TransformVolume.Interpolation Cubic_Lagrangian

Quintic_Lagrangian

public static final TransformVolume.Interpolation Quintic_Lagrangian

Heptic_Lagrangian

public static final TransformVolume.Interpolation Heptic_Lagrangian

Windowed_sinc

public static final TransformVolume.Interpolation Windowed_sinc

Nearest_Neighbor

public static final TransformVolume.Interpolation Nearest_Neighbor
Method Detail

values

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

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

valueOf

public static TransformVolume.Interpolation 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