Package net.opengis.gml.x32
Class RelatedTimeType.RelativePosition.Enum
- java.lang.Object
-
- org.apache.xmlbeans.StringEnumAbstractBase
-
- net.opengis.gml.x32.RelatedTimeType.RelativePosition.Enum
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- RelatedTimeType.RelativePosition
public static final class RelatedTimeType.RelativePosition.Enum extends org.apache.xmlbeans.StringEnumAbstractBaseEnumeration value class for net.opengis.gml.x32.RelatedTimeType$RelativePosition. 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_BEFORE 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_AFTER(package private) static intINT_BEFORE(package private) static intINT_BEGINS(package private) static intINT_BEGUN_BY(package private) static intINT_CONTAINS(package private) static intINT_DURING(package private) static intINT_ENDED_BY(package private) static intINT_ENDS(package private) static intINT_EQUALS(package private) static intINT_MEETS(package private) static intINT_MET_BY(package private) static intINT_OVERLAPPED_BY(package private) static intINT_OVERLAPSstatic org.apache.xmlbeans.StringEnumAbstractBase.Tabletable
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RelatedTimeType.RelativePosition.EnumforInt(int i)Returns the enum value corresponding to an int, or null if none.static RelatedTimeType.RelativePosition.EnumforString(String s)Returns the enum value for a string, or null if none.
-
-
-
Field Detail
-
INT_BEFORE
static final int INT_BEFORE
- See Also:
- Constant Field Values
-
INT_AFTER
static final int INT_AFTER
- See Also:
- Constant Field Values
-
INT_BEGINS
static final int INT_BEGINS
- See Also:
- Constant Field Values
-
INT_ENDS
static final int INT_ENDS
- See Also:
- Constant Field Values
-
INT_DURING
static final int INT_DURING
- See Also:
- Constant Field Values
-
INT_EQUALS
static final int INT_EQUALS
- See Also:
- Constant Field Values
-
INT_CONTAINS
static final int INT_CONTAINS
- See Also:
- Constant Field Values
-
INT_OVERLAPS
static final int INT_OVERLAPS
- See Also:
- Constant Field Values
-
INT_MEETS
static final int INT_MEETS
- See Also:
- Constant Field Values
-
INT_OVERLAPPED_BY
static final int INT_OVERLAPPED_BY
- See Also:
- Constant Field Values
-
INT_MET_BY
static final int INT_MET_BY
- See Also:
- Constant Field Values
-
INT_BEGUN_BY
static final int INT_BEGUN_BY
- See Also:
- Constant Field Values
-
INT_ENDED_BY
static final int INT_ENDED_BY
- See Also:
- Constant Field Values
-
table
public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table
-
-
Method Detail
-
forString
public static RelatedTimeType.RelativePosition.Enum forString(String s)
Returns the enum value for a string, or null if none.
-
forInt
public static RelatedTimeType.RelativePosition.Enum forInt(int i)
Returns the enum value corresponding to an int, or null if none.
-
-