com.esri.arcgis.schematic
Interface ISchematicWorkspace

All Superinterfaces:
Serializable
All Known Implementing Classes:
ISchematicWorkspaceProxy

public interface ISchematicWorkspace
extends Serializable

Provides access to members that control the schematic workspace functionality.

Product Availability

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

See Also:
ISchematicWorkspaceFactory

Method Summary
 ISchematicDataset createSchematicDataset(String name, String configKeyword)
          Creates a new schematic dataset.
 IName getFullName()
          Schematic workspace full name.
 ISchematicDataset getSchematicDatasetByID(int iD)
          Schematic dataset referenced by the specified ID.
 ISchematicDataset getSchematicDatasetByName(String name)
          Schematic dataset referenced by the specified Name.
 IEnumSchematicDatasetName getSchematicDatasetNames()
          List of the schematic dataset names within the schematic workspace.
 IEnumSchematicDataset getSchematicDatasets()
          List of the schematic datasets within the schematic workspace.
 IWorkspace getWorkspace()
          GDB workspace corresponding to the schematic workspace.
 

Method Detail

getWorkspace

IWorkspace getWorkspace()
                        throws IOException,
                               AutomationException
GDB workspace corresponding to the schematic workspace.

Product Availability

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

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

getFullName

IName getFullName()
                  throws IOException,
                         AutomationException
Schematic workspace full name.

Product Availability

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

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

getSchematicDatasetNames

IEnumSchematicDatasetName getSchematicDatasetNames()
                                                   throws IOException,
                                                          AutomationException
List of the schematic dataset names within the schematic workspace.

Product Availability

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

Returns:
A reference to a com.esri.arcgis.schematic.IEnumSchematicDatasetName
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
ISchematicWorkspace.getSchematicDatasets()

getSchematicDatasets

IEnumSchematicDataset getSchematicDatasets()
                                           throws IOException,
                                                  AutomationException
List of the schematic datasets within the schematic workspace.

Product Availability

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

Returns:
A reference to a com.esri.arcgis.schematic.IEnumSchematicDataset
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
ISchematicWorkspace.getSchematicDatasetNames()

getSchematicDatasetByID

ISchematicDataset getSchematicDatasetByID(int iD)
                                          throws IOException,
                                                 AutomationException
Schematic dataset referenced by the specified ID.

Product Availability

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

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

getSchematicDatasetByName

ISchematicDataset getSchematicDatasetByName(String name)
                                            throws IOException,
                                                   AutomationException
Schematic dataset referenced by the specified Name.

Product Availability

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

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

createSchematicDataset

ISchematicDataset createSchematicDataset(String name,
                                         String configKeyword)
                                         throws IOException,
                                                AutomationException
Creates a new schematic dataset.

Product Availability

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

Parameters:
name - The name (in)
configKeyword - The configKeyword (in, optional, pass 0 if not required)
Returns:
A reference to a com.esri.arcgis.schematic.ISchematicDataset
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.