com.esri.arcgis.geodatabase
Interface ITableCapabilities

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
AttributedRelationshipClass, FeatureClass, ITableCapabilitiesProxy, NetCDFFeatureClass, NetCDFTable, ObjectClass, RasterCatalog, RelQueryTable, RouteEventSource, SchematicDiagramClass, SchematicElementClass, Table, TemporalFeatureClass, XYEventSource

public interface ITableCapabilities
extends java.io.Serializable

Provides access to members that return information about and manage tables.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Remarks

The ITableCapabilities interface returns information indicating whether the table supports selections. Use CanSelect to determine if you can open a selection set on the table. A situation where CanSelect will be False is a standalone database table without an OID column.

For example, tables created by calling OpenFeatureQuery on IFeatureWorkspace using a QueryDef don't support selection, unless its definition is extended using IQueryName2.


Method Summary
 boolean isCanSelect()
          Indicates if the table supports selection.
 

Method Detail

isCanSelect

public boolean isCanSelect()
                    throws java.io.IOException,
                           AutomationException
Indicates if the table supports selection.

Supported Platforms

Windows, Solaris, Linux

Remarks

Use CanSelect to determine if you can open a selection set on the table. A situation where CanSelect will be False is a standalone database table without an OID column.

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