org.hibernate.spatial.dialect.oracle.criterion
Enum RelationshipMask

java.lang.Object
  extended by java.lang.Enum<RelationshipMask>
      extended by org.hibernate.spatial.dialect.oracle.criterion.RelationshipMask
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RelationshipMask>

public enum RelationshipMask
extends java.lang.Enum<RelationshipMask>


Enum Constant Summary
ANYINTERACT
           
CONTAINS
           
COVEREDBY
           
COVERS
           
EQUAL
           
INSIDE
           
ON
           
OVERLAPBYDISJOINT
           
OVERLAPBYINTERSECT
           
TOUCH
           
 
Method Summary
static java.lang.String booleanCombination(RelationshipMask[] masks)
           
static RelationshipMask valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RelationshipMask[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TOUCH

public static final RelationshipMask TOUCH

OVERLAPBYDISJOINT

public static final RelationshipMask OVERLAPBYDISJOINT

OVERLAPBYINTERSECT

public static final RelationshipMask OVERLAPBYINTERSECT

EQUAL

public static final RelationshipMask EQUAL

INSIDE

public static final RelationshipMask INSIDE

COVEREDBY

public static final RelationshipMask COVEREDBY

CONTAINS

public static final RelationshipMask CONTAINS

COVERS

public static final RelationshipMask COVERS

ANYINTERACT

public static final RelationshipMask ANYINTERACT

ON

public static final RelationshipMask ON
Method Detail

values

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

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

valueOf

public static RelationshipMask valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

booleanCombination

public static java.lang.String booleanCombination(RelationshipMask[] masks)