Package nl.b3p.csw.jaxb.gml
Enum CurveInterpolationType
- java.lang.Object
-
- java.lang.Enum<CurveInterpolationType>
-
- nl.b3p.csw.jaxb.gml.CurveInterpolationType
-
- All Implemented Interfaces:
Serializable,Comparable<CurveInterpolationType>
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 Summary
Enum Constants Enum Constant Description CIRCULAR_ARC_2_POINT_WITH_BULGECIRCULAR_ARC_3_POINTSCIRCULAR_ARC_CENTER_POINT_WITH_RADIUSCLOTHOIDCONICCUBIC_SPLINEELLIPTICALGEODESICLINEARPOLYNOMIAL_SPLINERATIONAL_SPLINE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CurveInterpolationTypefromValue(String v)Stringvalue()static CurveInterpolationTypevalueOf(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.
-
-
-
Enum Constant Detail
-
LINEAR
public static final CurveInterpolationType LINEAR
-
GEODESIC
public static final CurveInterpolationType GEODESIC
-
CIRCULAR_ARC_3_POINTS
public static final CurveInterpolationType CIRCULAR_ARC_3_POINTS
-
CIRCULAR_ARC_2_POINT_WITH_BULGE
public static final CurveInterpolationType CIRCULAR_ARC_2_POINT_WITH_BULGE
-
CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS
public static final CurveInterpolationType CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS
-
ELLIPTICAL
public static final CurveInterpolationType ELLIPTICAL
-
CLOTHOID
public static final CurveInterpolationType CLOTHOID
-
CONIC
public static final CurveInterpolationType CONIC
-
POLYNOMIAL_SPLINE
public static final CurveInterpolationType POLYNOMIAL_SPLINE
-
CUBIC_SPLINE
public static final CurveInterpolationType CUBIC_SPLINE
-
RATIONAL_SPLINE
public static final CurveInterpolationType RATIONAL_SPLINE
-
-
Method Detail
-
values
public static CurveInterpolationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CurveInterpolationType c : CurveInterpolationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CurveInterpolationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static CurveInterpolationType fromValue(String v)
-
-