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