public enum CurveInterpolationType extends Enum<CurveInterpolationType>
Java class for CurveInterpolationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CurveInterpolationType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="linear"/>
<enumeration value="geodesic"/>
<enumeration value="circularArc3Points"/>
<enumeration value="circularArc2PointWithBulge"/>
<enumeration value="circularArcCenterPointWithRadius"/>
<enumeration value="elliptical"/>
<enumeration value="clothoid"/>
<enumeration value="conic"/>
<enumeration value="polynomialSpline"/>
<enumeration value="cubicSpline"/>
<enumeration value="rationalSpline"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CIRCULAR_ARC_2_POINT_WITH_BULGE |
CIRCULAR_ARC_3_POINTS |
CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS |
CLOTHOID |
CONIC |
CUBIC_SPLINE |
ELLIPTICAL |
GEODESIC |
LINEAR |
POLYNOMIAL_SPLINE |
RATIONAL_SPLINE |
| Modifier and Type | Method and Description |
|---|---|
static CurveInterpolationType |
fromValue(String v) |
String |
value() |
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
public static final CurveInterpolationType GEODESIC
public static final CurveInterpolationType CIRCULAR_ARC_3_POINTS
public static final CurveInterpolationType CIRCULAR_ARC_2_POINT_WITH_BULGE
public static final CurveInterpolationType CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS
public static final CurveInterpolationType ELLIPTICAL
public static final CurveInterpolationType CLOTHOID
public static final CurveInterpolationType CONIC
public static final CurveInterpolationType POLYNOMIAL_SPLINE
public static final CurveInterpolationType CUBIC_SPLINE
public static final CurveInterpolationType RATIONAL_SPLINE
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 nullpublic String value()
public static CurveInterpolationType fromValue(String v)
Copyright © 2016. All rights reserved.