public enum CurveInterpolationType extends Enum<CurveInterpolationType>
| Enum Constant and Description |
|---|
CIRCULAR_ARC_3_POINTS
A segment that is an arc of a circle defined by three
points; the first and last points are the start and end position of the
arc, and the arc goes through the middle point.
|
LINEAR
A segment consisting of the control points
connected by straight lines.
|
| Modifier and Type | Method and Description |
|---|---|
static CurveInterpolationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CurveInterpolationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurveInterpolationType LINEAR
ILineStringpublic static final CurveInterpolationType CIRCULAR_ARC_3_POINTS
public static CurveInterpolationType[] values()
for (CurveInterpolationType c : CurveInterpolationType.values()) System.out.println(c);
public static CurveInterpolationType 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 null