public enum PatchDirectionType extends 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(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018. All rights reserved.