com.esri.arcgis.geodatabase
Interface IPlugInNetworkDatasetContainer

All Superinterfaces:
Serializable
All Known Implementing Classes:
IPlugInNetworkDatasetContainerProxy

public interface IPlugInNetworkDatasetContainer
extends Serializable

Provides access to members that get network datasets from plug-in workspaces and feature datasets.

Product Availability

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


Method Summary
 INetworkDataset getNetworkDataset(int index)
          The NetworkDataset specified by the index.
 INetworkDataset getNetworkDatasetByName(String networkName)
          The NetworkDataset with the specified name.
 int getNetworkDatasetCount()
          The number of NetworkDatasets in this container.
 IEnumDatasetName getNetworkDatasetNames()
          The names of the NetworkDatasets in this container.
 IEnumDataset getNetworkDatasets()
          The NetworkDatasets in this container.
 

Method Detail

getNetworkDatasetCount

int getNetworkDatasetCount()
                           throws IOException,
                                  AutomationException
The number of NetworkDatasets in this container.

Product Availability

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

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

getNetworkDataset

INetworkDataset getNetworkDataset(int index)
                                  throws IOException,
                                         AutomationException
The NetworkDataset specified by the index.

Product Availability

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

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.geodatabase.INetworkDataset
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getNetworkDatasetByName

INetworkDataset getNetworkDatasetByName(String networkName)
                                        throws IOException,
                                               AutomationException
The NetworkDataset with the specified name.

Product Availability

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

Parameters:
networkName - The networkName (in)
Returns:
A reference to a com.esri.arcgis.geodatabase.INetworkDataset
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getNetworkDatasets

IEnumDataset getNetworkDatasets()
                                throws IOException,
                                       AutomationException
The NetworkDatasets in this container.

Product Availability

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

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

getNetworkDatasetNames

IEnumDatasetName getNetworkDatasetNames()
                                        throws IOException,
                                               AutomationException
The names of the NetworkDatasets in this container.

Product Availability

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

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