Package net.opengis.gml.x32
Class SurfaceInterpolationType.Enum
- java.lang.Object
-
- org.apache.xmlbeans.StringEnumAbstractBase
-
- net.opengis.gml.x32.SurfaceInterpolationType.Enum
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- SurfaceInterpolationType
public static final class SurfaceInterpolationType.Enum extends org.apache.xmlbeans.StringEnumAbstractBaseEnumeration value class for net.opengis.gml.x32.SurfaceInterpolationType. 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_NONE 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_CONIC(package private) static intINT_ELLIPTICAL(package private) static intINT_NONE(package private) static intINT_PARAMETRIC_CURVE(package private) static intINT_PLANAR(package private) static intINT_POLYNOMIAL_SPLINE(package private) static intINT_RATIONAL_SPLINE(package private) static intINT_SPHERICAL(package private) static intINT_TIN(package private) static intINT_TRIANGULATED_SPLINEstatic org.apache.xmlbeans.StringEnumAbstractBase.Tabletable
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SurfaceInterpolationType.EnumforInt(int i)Returns the enum value corresponding to an int, or null if none.static SurfaceInterpolationType.EnumforString(String s)Returns the enum value for a string, or null if none.
-
-
-
Field Detail
-
INT_NONE
static final int INT_NONE
- See Also:
- Constant Field Values
-
INT_PLANAR
static final int INT_PLANAR
- See Also:
- Constant Field Values
-
INT_SPHERICAL
static final int INT_SPHERICAL
- See Also:
- Constant Field Values
-
INT_ELLIPTICAL
static final int INT_ELLIPTICAL
- See Also:
- Constant Field Values
-
INT_CONIC
static final int INT_CONIC
- See Also:
- Constant Field Values
-
INT_TIN
static final int INT_TIN
- See Also:
- Constant Field Values
-
INT_PARAMETRIC_CURVE
static final int INT_PARAMETRIC_CURVE
- See Also:
- Constant Field Values
-
INT_POLYNOMIAL_SPLINE
static final int INT_POLYNOMIAL_SPLINE
- See Also:
- Constant Field Values
-
INT_RATIONAL_SPLINE
static final int INT_RATIONAL_SPLINE
- See Also:
- Constant Field Values
-
INT_TRIANGULATED_SPLINE
static final int INT_TRIANGULATED_SPLINE
- See Also:
- Constant Field Values
-
table
public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table
-
-
Method Detail
-
forString
public static SurfaceInterpolationType.Enum forString(String s)
Returns the enum value for a string, or null if none.
-
forInt
public static SurfaceInterpolationType.Enum forInt(int i)
Returns the enum value corresponding to an int, or null if none.
-
-