public class DWithin extends SpatialFilter
<DWithin> 元素的抽象类。
空间算子的一种,表示缓冲区内运算,即限定结果要素空间上在指定几何对象的指定距离范围内。
一个 DWithin 元素由存储几何对象的属性字段、空间运算的目标几何对象、缓冲区距离组成。
name, subExpression
构造器和说明 |
---|
DWithin()
构造函数。
|
DWithin(PropertyName property, Geometry geometry, Distance distance)
通过存储几何对象的属性字段名称、目标几何对象、缓冲区距离构建
DWithin 对象。 |
DWithin(PropertyName property, GeometryExpression geometry, Distance distance)
通过存储几何对象的属性字段名称、目标几何对象、缓冲区距离构建
DWithin 对象。 |
限定符和类型 | 方法和说明 |
---|---|
void |
accept(AbstractFilterVisitor visitor) |
FilterType |
getFilterType()
获取 Filter 元素的类型。
|
getGeometry, getPropertyName, setSubExpression
copy, getName, getSubExpression, getSubExpressionCount
public DWithin(PropertyName property, GeometryExpression geometry, Distance distance)
通过存储几何对象的属性字段名称、目标几何对象、缓冲区距离构建 DWithin
对象。
property
- <PropertyName> 元素的抽象对象,表示存储几何对象的属性字段名称。geometry
- 目标几何对象。distance
- 缓冲区距离。public DWithin(PropertyName property, Geometry geometry, Distance distance)
通过存储几何对象的属性字段名称、目标几何对象、缓冲区距离构建 DWithin
对象。
property
- <PropertyName> 元素的抽象对象,表示存储几何对象的属性字段名称。geometry
- 目标几何对象。distance
- 缓冲区距离。public DWithin()
构造函数。
public void accept(AbstractFilterVisitor visitor) throws OGCException
accept
在类中 Filter
OGCException
public FilterType getFilterType()
Filter
获取 Filter 元素的类型。
getFilterType
在类中 Filter