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