com.esri.arcgis.networkanalyst
Interface INACompactStreetDirectionSummary

All Superinterfaces:
Serializable
All Known Implementing Classes:
INACompactStreetDirectionSummaryProxy

public interface INACompactStreetDirectionSummary
extends Serializable

Provides access to the compact driving directions summary.

Remarks

The INACompactStreetDirectionSummary interface provides access to the summary information for the route's direction including the total length, total time, total drive time, and the route's extent.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 IEnvelope getEnvelope()
          The bounding box of the route.
 double getTotalDriveTime()
          The total drive time for the route.
 double getTotalLength()
          The total length of the route.
 double getTotalTime()
          The total time for the route including wait and service time.
 

Method Detail

getTotalLength

double getTotalLength()
                      throws IOException,
                             AutomationException
The total length of the route.

Remarks

TotalLength returns the total length of the route.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The length
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTotalTime

double getTotalTime()
                    throws IOException,
                           AutomationException
The total time for the route including wait and service time.

Remarks

TotalTime returns the total travel time of the route including wait time and service time at stops.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The time
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTotalDriveTime

double getTotalDriveTime()
                         throws IOException,
                                AutomationException
The total drive time for the route.

Remarks

TotalDriveTime returns the total drive time of the route excluding any wait time or service time at stops.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The time
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getEnvelope

IEnvelope getEnvelope()
                      throws IOException,
                             AutomationException
The bounding box of the route.

Remarks

Envelope returns the geographic envelope of the route.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
A reference to a com.esri.arcgis.geometry.IEnvelope
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.