Package nl.b3p.csw.jaxb.filter
Enum SpatialOperatorNameType
- java.lang.Object
-
- java.lang.Enum<SpatialOperatorNameType>
-
- nl.b3p.csw.jaxb.filter.SpatialOperatorNameType
-
- All Implemented Interfaces:
Serializable,Comparable<SpatialOperatorNameType>
public enum SpatialOperatorNameType extends Enum<SpatialOperatorNameType>
Java class for SpatialOperatorNameType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SpatialOperatorNameType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="BBOX"/> <enumeration value="Equals"/> <enumeration value="Disjoint"/> <enumeration value="Intersects"/> <enumeration value="Touches"/> <enumeration value="Crosses"/> <enumeration value="Within"/> <enumeration value="Contains"/> <enumeration value="Overlaps"/> <enumeration value="Beyond"/> <enumeration value="DWithin"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SpatialOperatorNameTypefromValue(String v)Stringvalue()static SpatialOperatorNameTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SpatialOperatorNameType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BBOX
public static final SpatialOperatorNameType BBOX
-
EQUALS
public static final SpatialOperatorNameType EQUALS
-
DISJOINT
public static final SpatialOperatorNameType DISJOINT
-
INTERSECTS
public static final SpatialOperatorNameType INTERSECTS
-
TOUCHES
public static final SpatialOperatorNameType TOUCHES
-
CROSSES
public static final SpatialOperatorNameType CROSSES
-
WITHIN
public static final SpatialOperatorNameType WITHIN
-
CONTAINS
public static final SpatialOperatorNameType CONTAINS
-
OVERLAPS
public static final SpatialOperatorNameType OVERLAPS
-
BEYOND
public static final SpatialOperatorNameType BEYOND
-
D_WITHIN
public static final SpatialOperatorNameType D_WITHIN
-
-
Method Detail
-
values
public static SpatialOperatorNameType[] 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 (SpatialOperatorNameType c : SpatialOperatorNameType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpatialOperatorNameType 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 SpatialOperatorNameType fromValue(String v)
-
-