public class Within extends SpatialFilter
<Within> 元素的抽象类。
空间算子的一种,表示在内部,即限定结果要素空间上在指定的几何对象内部。指定的几何对象的维数不能比要素的维数低。
一个 Within 元素由存储几何对象的属性字段名称、空间运算的目标几何对象组成。
name, subExpression| 构造器和说明 |
|---|
Within()
构造函数。
|
Within(PropertyName propertyName, Geometry geometry)
通过存储几何对象的属性字段名称、目标几何对象构建名称为空的
Within 对象。 |
Within(PropertyName property, GeometryExpression geometry)
通过存储几何对象的属性字段名称、目标几何对象构建名称为“Within”的
Within 对象。 |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
accept(AbstractFilterVisitor visitor) |
FilterType |
getFilterType()
获取 Filter 元素的类型。
|
getGeometry, getPropertyName, setSubExpressioncopy, getName, getSubExpression, getSubExpressionCountpublic Within(PropertyName property, GeometryExpression geometry)
通过存储几何对象的属性字段名称、目标几何对象构建名称为“Within”的 Within 对象。
property - <PropertyName> 元素的抽象对象,表示存储几何对象的属性字段名称。geometry - 目标几何对象。public Within(PropertyName propertyName, Geometry geometry) throws OGCException
通过存储几何对象的属性字段名称、目标几何对象构建名称为空的 Within 对象。
propertyName - <PropertyName> 元素的抽象对象,表示存储几何对象的属性字段名称。geometry - SuperMap iServer 中的几何对象。OGCException - OGC 服务异常。public Within()
构造函数。
public void accept(AbstractFilterVisitor visitor) throws OGCException
accept 在类中 FilterOGCExceptionpublic FilterType getFilterType()
Filter获取 Filter 元素的类型。
getFilterType 在类中 Filter