Enum SpatialParameters.Mask
- java.lang.Object
-
- java.lang.Enum<SpatialParameters.Mask>
-
- org.eclipse.persistence.expressions.spatial.SpatialParameters.Mask
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpatialParameters.Mask>
- Enclosing class:
- SpatialParameters
public static enum SpatialParameters.Mask extends java.lang.Enum<SpatialParameters.Mask>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANYINTERACT
CONTAINS
COVEREDBY
COVERS
EQUAL
INSIDE
ON
OVERLAPBDYDISJOINT
OVERLAPBDYINTERSECT
TOUCH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpatialParameters.Mask
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpatialParameters.Mask[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOUCH
public static final SpatialParameters.Mask TOUCH
-
OVERLAPBDYDISJOINT
public static final SpatialParameters.Mask OVERLAPBDYDISJOINT
-
OVERLAPBDYINTERSECT
public static final SpatialParameters.Mask OVERLAPBDYINTERSECT
-
EQUAL
public static final SpatialParameters.Mask EQUAL
-
INSIDE
public static final SpatialParameters.Mask INSIDE
-
COVEREDBY
public static final SpatialParameters.Mask COVEREDBY
-
CONTAINS
public static final SpatialParameters.Mask CONTAINS
-
COVERS
public static final SpatialParameters.Mask COVERS
-
ANYINTERACT
public static final SpatialParameters.Mask ANYINTERACT
-
ON
public static final SpatialParameters.Mask ON
-
-
Method Detail
-
values
public static SpatialParameters.Mask[] 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 (SpatialParameters.Mask c : SpatialParameters.Mask.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpatialParameters.Mask 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 namejava.lang.NullPointerException
- if the argument is null
-
-