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