org.citygml4j.jaxb.gml._3_1_1
Enum CurveInterpolationType

java.lang.Object
  extended by java.lang.Enum<CurveInterpolationType>
      extended by org.citygml4j.jaxb.gml._3_1_1.CurveInterpolationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CurveInterpolationType>

public enum CurveInterpolationType
extends java.lang.Enum<CurveInterpolationType>

Java-Klasse für CurveInterpolationType.

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.

 <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
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
           
 
Method Summary
static CurveInterpolationType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static CurveInterpolationType valueOf(java.lang.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're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 final CurveInterpolationType[] values()
Returns an array containing the constants of this enum type, in the order they're 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're declared

valueOf

public static CurveInterpolationType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

value

public java.lang.String value()

fromValue

public static CurveInterpolationType fromValue(java.lang.String v)