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