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