Oracle® Spatial Java API Reference
10g Release 2 (10.2)

B14373-02


oracle.spatial.network
Interface AnalysisInfo


public interface AnalysisInfo

This interface defines methods for retrieving the analysis information. The information includes: the start node, the current node, the next node, the current link, the next link, the current path depth (no of links in the path), the current path cost, the current path duration, and all links in the current path.


Method Summary
 double getCurrentCost()
          Returns the current path cost.
 int getCurrentDepth()
          Returns the current path depth.
 double getCurrentDuration()
          Returns current accumulated duration
 Link getCurrentLink()
          Returns the current link.
 Node getCurrentNode()
          Returns the current node.
 Link getNextLink()
          Returns the next link.
 Node getNextNode()
          Returns the next node.
 java.util.Vector getPathLinkVec()
          Returns the current path links as a Vector.
 java.util.Vector getPathNodeVec()
          Returns the current path nodes as a Vector.
 Node getStartNode()
          Returns the start node.

 

Method Detail

getStartNode

Node getStartNode()
Returns the start node.

getCurrentNode

Node getCurrentNode()
Returns the current node.

getNextNode

Node getNextNode()
Returns the next node.

getCurrentLink

Link getCurrentLink()
Returns the current link.

getNextLink

Link getNextLink()
Returns the next link.

getCurrentDepth

int getCurrentDepth()
Returns the current path depth.

getCurrentCost

double getCurrentCost()
Returns the current path cost.

getPathLinkVec

java.util.Vector getPathLinkVec()
Returns the current path links as a Vector.

getPathNodeVec

java.util.Vector getPathNodeVec()
Returns the current path nodes as a Vector.

getCurrentDuration

double getCurrentDuration()
Returns current accumulated duration

Oracle® Spatial Java API Reference
10g Release 2 (10.2)

B14373-02


Copyright © 2006, Oracle. All Rights Reserved.