public static enum STCS.RegionType extends java.lang.Enum<STCS.RegionType>
List all possible region types allowed in an STC-S expression.
Note: The possible values listed in this enumeration are limited to the subset of STC-S described by the section "6 Use of STC-S in TAP (informative)" of the TAP Recommendation 1.0 (27th March 2010).
Enum Constant and Description |
---|
BOX |
CIRCLE |
INTERSECTION |
NOT |
POLYGON |
POSITION |
UNION |
Modifier and Type | Method and Description |
---|---|
static STCS.RegionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static STCS.RegionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STCS.RegionType POSITION
public static final STCS.RegionType CIRCLE
public static final STCS.RegionType BOX
public static final STCS.RegionType POLYGON
public static final STCS.RegionType UNION
public static final STCS.RegionType INTERSECTION
public static final STCS.RegionType NOT
public static STCS.RegionType[] values()
for (STCS.RegionType c : STCS.RegionType.values()) System.out.println(c);
public static STCS.RegionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null