Enum SpatialOperandName
- java.lang.Object
-
- java.lang.Enum<SpatialOperandName>
-
- org.citydb.config.project.query.filter.selection.spatial.SpatialOperandName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpatialOperandName>
public enum SpatialOperandName extends java.lang.Enum<SpatialOperandName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BBOX
LINE_STRING
MULTI_LINE_STRING
MULTI_POINT
MULTI_POLYGON
POINT
POLYGON
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpatialOperandName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpatialOperandName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BBOX
public static final SpatialOperandName BBOX
-
POINT
public static final SpatialOperandName POINT
-
LINE_STRING
public static final SpatialOperandName LINE_STRING
-
POLYGON
public static final SpatialOperandName POLYGON
-
MULTI_POINT
public static final SpatialOperandName MULTI_POINT
-
MULTI_LINE_STRING
public static final SpatialOperandName MULTI_LINE_STRING
-
MULTI_POLYGON
public static final SpatialOperandName MULTI_POLYGON
-
-
Method Detail
-
values
public static SpatialOperandName[] 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 (SpatialOperandName c : SpatialOperandName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpatialOperandName 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
-
-