plugins.big.bigsnakeutils.process.process1D
Enum BSplineBasis.BSplineBasisType

java.lang.Object
  extended by java.lang.Enum<BSplineBasis.BSplineBasisType>
      extended by plugins.big.bigsnakeutils.process.process1D.BSplineBasis.BSplineBasisType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BSplineBasis.BSplineBasisType>
Enclosing class:
BSplineBasis

public static enum BSplineBasis.BSplineBasisType
extends java.lang.Enum<BSplineBasis.BSplineBasisType>

Type of B-spline basis functions.


Enum Constant Summary
ASPLINE
           
CERCLE
           
CUBICBSPLINE
           
ESPLINE3
           
ESPLINE4
           
LINEARBSPLINE
           
MSPLINE
           
QUADRATICBSPLINE
           
 
Method Summary
static BSplineBasis.BSplineBasisType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BSplineBasis.BSplineBasisType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ESPLINE3

public static final BSplineBasis.BSplineBasisType ESPLINE3

ESPLINE4

public static final BSplineBasis.BSplineBasisType ESPLINE4

LINEARBSPLINE

public static final BSplineBasis.BSplineBasisType LINEARBSPLINE

QUADRATICBSPLINE

public static final BSplineBasis.BSplineBasisType QUADRATICBSPLINE

CUBICBSPLINE

public static final BSplineBasis.BSplineBasisType CUBICBSPLINE

MSPLINE

public static final BSplineBasis.BSplineBasisType MSPLINE

ASPLINE

public static final BSplineBasis.BSplineBasisType ASPLINE

CERCLE

public static final BSplineBasis.BSplineBasisType CERCLE
Method Detail

values

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

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

valueOf

public static BSplineBasis.BSplineBasisType 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