public enum BSplineBasisType extends java.lang.Enum<BSplineBasisType>
Enum Constant and Description |
---|
CUBICBSPLINE |
ESPLINE3 |
ESPLINE4 |
LINEARBSPLINE |
MSPLINE |
QUADRATICBSPLINE |
Modifier and Type | Method and Description |
---|---|
static BSplineBasisType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BSplineBasisType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BSplineBasisType ESPLINE3
public static final BSplineBasisType ESPLINE4
public static final BSplineBasisType LINEARBSPLINE
public static final BSplineBasisType QUADRATICBSPLINE
public static final BSplineBasisType CUBICBSPLINE
public static final BSplineBasisType MSPLINE
public static BSplineBasisType[] values()
for (BSplineBasisType c : BSplineBasisType.values()) System.out.println(c);
public static BSplineBasisType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null