Package oracle.spatial.network.lod
Class GoalNodeOperator
- java.lang.Object
-
- oracle.spatial.network.lod.GoalNodeOperator
-
public class GoalNodeOperator extends java.lang.ObjectSupports "and", "or", and "not" operations on goal node filters.- Since:
- 11gR1
-
-
Constructor Summary
Constructors Constructor Description GoalNodeOperator()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LODGoalNodeand(LODGoalNode[] goalNodes)Performs "and" operation on an array of goal node filters, and returns the combined goal node filter.static LODGoalNodenot(LODGoalNode goalNode)Performs "not" operation on the specified goal node filter, and returns the opposite goal node filter.static LODGoalNodeor(LODGoalNode[] goalNodes)Performs "or" operation on an array of goal node filters, and returns the combined goal node filter.
-
-
-
Method Detail
-
and
public static LODGoalNode and(LODGoalNode[] goalNodes)
Performs "and" operation on an array of goal node filters, and returns the combined goal node filter.
-
or
public static LODGoalNode or(LODGoalNode[] goalNodes)
Performs "or" operation on an array of goal node filters, and returns the combined goal node filter.
-
not
public static LODGoalNode not(LODGoalNode goalNode)
Performs "not" operation on the specified goal node filter, and returns the opposite goal node filter.
-
-