org.deegree.filter.spatial
Enum SpatialOperator.SubType

java.lang.Object
  extended by java.lang.Enum<SpatialOperator.SubType>
      extended by org.deegree.filter.spatial.SpatialOperator.SubType
All Implemented Interfaces:
Serializable, Comparable<SpatialOperator.SubType>
Enclosing class:
SpatialOperator

public static enum SpatialOperator.SubType
extends Enum<SpatialOperator.SubType>

Convenience enum type for discriminating the different SpatialOperator types.


Enum Constant Summary
BBOX
          True iff ...
BEYOND
          True iff ...
CONTAINS
          True iff ...
CROSSES
          True iff ...
DISJOINT
          True iff the two operands are disjoint.
DWITHIN
          True iff ...
EQUALS
          True iff the two operands are identical.
INTERSECTS
          True iff ...
OVERLAPS
          True iff ...
TOUCHES
          True iff the two operands touch.
WITHIN
          True iff the first operand is completely inside the second.
 
Method Summary
static SpatialOperator.SubType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SpatialOperator.SubType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EQUALS

public static final SpatialOperator.SubType EQUALS
True iff the two operands are identical. The SpatialOperator is an instance of Equals.


DISJOINT

public static final SpatialOperator.SubType DISJOINT
True iff the two operands are disjoint. The SpatialOperator is an instance of Disjoint.


TOUCHES

public static final SpatialOperator.SubType TOUCHES
True iff the two operands touch. The SpatialOperator is an instance of Touches.


WITHIN

public static final SpatialOperator.SubType WITHIN
True iff the first operand is completely inside the second. The SpatialOperator is an instance of Within.


OVERLAPS

public static final SpatialOperator.SubType OVERLAPS
True iff ... The SpatialOperator is an instance of Overlaps.


CROSSES

public static final SpatialOperator.SubType CROSSES
True iff ... The SpatialOperator is an instance of Crosses.


INTERSECTS

public static final SpatialOperator.SubType INTERSECTS
True iff ... The SpatialOperator is an instance of Intersects.


CONTAINS

public static final SpatialOperator.SubType CONTAINS
True iff ... The SpatialOperator is an instance of Contains.


DWITHIN

public static final SpatialOperator.SubType DWITHIN
True iff ... The SpatialOperator is an instance of DWithin.


BEYOND

public static final SpatialOperator.SubType BEYOND
True iff ... The SpatialOperator is an instance of Beyond.


BBOX

public static final SpatialOperator.SubType BBOX
True iff ... The SpatialOperator is an instance of BBOX.

Method Detail

values

public static SpatialOperator.SubType[] 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 (SpatialOperator.SubType c : SpatialOperator.SubType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SpatialOperator.SubType 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 name
NullPointerException - if the argument is null


Copyright © 2011. All Rights Reserved.