Package net.opengis.gml.x32
Class CurveInterpolationType.Enum
- java.lang.Object
-
- org.apache.xmlbeans.StringEnumAbstractBase
-
- net.opengis.gml.x32.CurveInterpolationType.Enum
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- CurveInterpolationType
public static final class CurveInterpolationType.Enum extends org.apache.xmlbeans.StringEnumAbstractBaseEnumeration value class for net.opengis.gml.x32.CurveInterpolationType. These enum values can be used as follows:enum.toString(); // returns the string value of the enum enum.intValue(); // returns an int value, useful for switches // e.g., case Enum.INT_LINEAR Enum.forString(s); // returns the enum value for a string Enum.forInt(i); // returns the enum value for an int
Enumeration objects are immutable singleton objects that can be compared using == object equality. They have no public constructor. See the constants defined within this class for all the valid values.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static intINT_CIRCULAR_ARC_2_POINT_WITH_BULGE(package private) static intINT_CIRCULAR_ARC_3_POINTS(package private) static intINT_CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS(package private) static intINT_CLOTHOID(package private) static intINT_CONIC(package private) static intINT_CUBIC_SPLINE(package private) static intINT_ELLIPTICAL(package private) static intINT_GEODESIC(package private) static intINT_LINEAR(package private) static intINT_POLYNOMIAL_SPLINE(package private) static intINT_RATIONAL_SPLINEstatic org.apache.xmlbeans.StringEnumAbstractBase.Tabletable
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CurveInterpolationType.EnumforInt(int i)Returns the enum value corresponding to an int, or null if none.static CurveInterpolationType.EnumforString(String s)Returns the enum value for a string, or null if none.
-
-
-
Field Detail
-
INT_LINEAR
static final int INT_LINEAR
- See Also:
- Constant Field Values
-
INT_GEODESIC
static final int INT_GEODESIC
- See Also:
- Constant Field Values
-
INT_CIRCULAR_ARC_3_POINTS
static final int INT_CIRCULAR_ARC_3_POINTS
- See Also:
- Constant Field Values
-
INT_CIRCULAR_ARC_2_POINT_WITH_BULGE
static final int INT_CIRCULAR_ARC_2_POINT_WITH_BULGE
- See Also:
- Constant Field Values
-
INT_CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS
static final int INT_CIRCULAR_ARC_CENTER_POINT_WITH_RADIUS
- See Also:
- Constant Field Values
-
INT_ELLIPTICAL
static final int INT_ELLIPTICAL
- See Also:
- Constant Field Values
-
INT_CLOTHOID
static final int INT_CLOTHOID
- See Also:
- Constant Field Values
-
INT_CONIC
static final int INT_CONIC
- See Also:
- Constant Field Values
-
INT_POLYNOMIAL_SPLINE
static final int INT_POLYNOMIAL_SPLINE
- See Also:
- Constant Field Values
-
INT_CUBIC_SPLINE
static final int INT_CUBIC_SPLINE
- See Also:
- Constant Field Values
-
INT_RATIONAL_SPLINE
static final int INT_RATIONAL_SPLINE
- See Also:
- Constant Field Values
-
table
public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table
-
-
Method Detail
-
forString
public static CurveInterpolationType.Enum forString(String s)
Returns the enum value for a string, or null if none.
-
forInt
public static CurveInterpolationType.Enum forInt(int i)
Returns the enum value corresponding to an int, or null if none.
-
-