Package oracle.spatial.network.lod
Class ConstraintOperator
- java.lang.Object
-
- oracle.spatial.network.lod.ConstraintOperator
-
public class ConstraintOperator extends java.lang.Object
Supports "and", "or", and "not" operations on network constraints.- Since:
- 11gR2
-
-
Constructor Summary
Constructors Constructor Description ConstraintOperator()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LODNetworkConstraint
and(LODNetworkConstraint[] constraints)
Performs "and" operation on an array of constraints, and returns the combined constraint.static LODNetworkConstraint
not(LODNetworkConstraint constraint)
Performs "not" operation on the specified constraint, and returns the opposite constraint.static LODNetworkConstraint
or(LODNetworkConstraint[] constraints)
Performs "or" operation on an array of constraints, and returns the combined constraint.
-
-
-
Method Detail
-
and
public static LODNetworkConstraint and(LODNetworkConstraint[] constraints)
Performs "and" operation on an array of constraints, and returns the combined constraint.- Parameters:
constraints
-- Returns:
-
or
public static LODNetworkConstraint or(LODNetworkConstraint[] constraints)
Performs "or" operation on an array of constraints, and returns the combined constraint.- Parameters:
constraints
-- Returns:
-
not
public static LODNetworkConstraint not(LODNetworkConstraint constraint)
Performs "not" operation on the specified constraint, and returns the opposite constraint.- Parameters:
constraint
-- Returns:
-
-