public static enum MeshCurve.Interpolation extends java.lang.Enum<MeshCurve.Interpolation>
| Enum Constant and Description |
|---|
B_SPLINE |
LINEAR |
NATURAL_SPLINE |
| Modifier and Type | Method and Description |
|---|---|
static MeshCurve.Interpolation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeshCurve.Interpolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeshCurve.Interpolation LINEAR
public static final MeshCurve.Interpolation B_SPLINE
public static final MeshCurve.Interpolation NATURAL_SPLINE
public static MeshCurve.Interpolation[] values()
for (MeshCurve.Interpolation c : MeshCurve.Interpolation.values()) System.out.println(c);
public static MeshCurve.Interpolation 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