Package oracle.spatial.network.lod
Class FeatureFilterOperator
- java.lang.Object
-
- oracle.spatial.network.lod.FeatureFilterOperator
-
public class FeatureFilterOperator extends java.lang.ObjectSupports "and", "or", and "not" operations on feature filters.- Since:
- 12.1
-
-
Constructor Summary
Constructors Constructor Description FeatureFilterOperator()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeatureFilterand(FeatureFilter[] filters)Performs "and" operation on an array of feature filters, and returns the combined feature filter.static FeatureFilternot(FeatureFilter filter)Performs "not" operation on the specified feature filter, and returns the opposite feature filter.static FeatureFilteror(FeatureFilter[] filters)Performs "or" operation on an array of feature filters, and returns the combined feature filter.
-
-
-
Method Detail
-
and
public static FeatureFilter and(FeatureFilter[] filters)
Performs "and" operation on an array of feature filters, and returns the combined feature filter.
-
or
public static FeatureFilter or(FeatureFilter[] filters)
Performs "or" operation on an array of feature filters, and returns the combined feature filter.
-
not
public static FeatureFilter not(FeatureFilter filter)
Performs "not" operation on the specified feature filter, and returns the opposite feature filter.
-
-