Interface ILcdDatabaseModelDescriptor

All Superinterfaces:
Cloneable, ILcdDataModelDescriptor, ILcdFeaturedDescriptor, ILcdModelDescriptor, Serializable
All Known Implementing Classes:
TLcdDatabaseModelDescriptor, TLcdDB2SpatialModelDescriptor, TLcdInformixGeodeticModelDescriptor, TLcdInformixSpatialModelDescriptor, TLcdLVDBModelDescriptor, TLcdMSSQLModelDescriptor, TLcdOracleGeoRasterModelDescriptor, TLcdOracleSpatialModelDescriptor, TLcdPostGISModelDescriptor, TLcdSpatiaLiteModelDescriptor

public interface ILcdDatabaseModelDescriptor extends ILcdModelDescriptor, ILcdDataModelDescriptor, ILcdFeaturedDescriptor, Cloneable
This ILcdModelDescriptor specifically describes database models. It contains the additional properties that are typically present in spatial databases.
  • Method Details Link icon

    • setTableName Link icon

      void setTableName(String aName)
      Sets the name of the database table.
      Parameters:
      aName - the name of the database table.
    • getTableName Link icon

      String getTableName()
      Returns the name of the database table.
      Returns:
      a table name.
    • setSelectionTables Link icon

      void setSelectionTables(String aSelectionTables)
      Sets the names of additional tables used in the select query.
      Parameters:
      aSelectionTables - a list of additional tables separated by columns.
    • getSelectionTables Link icon

      String getSelectionTables()
      Returns the names of the additional tables used in the select query
      Returns:
      a list of additional tables, separated by columns.
    • setSelectionFilter Link icon

      void setSelectionFilter(String aSelectionFilter)
      A selection filter string , normally appended to the WHERE part of the select query.
      Parameters:
      aSelectionFilter - a selection filter string.
    • getSelectionFilter Link icon

      String getSelectionFilter()
      Returns the string representing the selection filter.
      Returns:
      the selection filter.
    • setGeometryColumnName Link icon

      void setGeometryColumnName(String aName)
      Sets the name of the column containing the database geometry object.
      Parameters:
      aName - the name of the table column containing the geometry.
    • getGeometryColumnName Link icon

      String getGeometryColumnName()
      Returns the name of the table column containing the geometry.
      Returns:
      the name of the column containing the geometry.
    • setFeatureNames Link icon

      void setFeatureNames(String[] aFeatureNames)
      Sets the names of the features to be selected.
      Parameters:
      aFeatureNames - a list of feature names.
    • getFeatureName Link icon

      String getFeatureName(int aIndex)
      Returns the name of a particular feature.
      Specified by:
      getFeatureName in interface ILcdFeaturedDescriptor
      Parameters:
      aIndex - the feature index.
      Returns:
      the name corresponding to the given index.
    • setPrimaryFeatureIndex Link icon

      void setPrimaryFeatureIndex(int aPrimaryFeatureIndex)
      Sets the primary feature index
      Parameters:
      aPrimaryFeatureIndex - the primary feature index
    • getPrimaryFeatureIndex Link icon

      int getPrimaryFeatureIndex()
      Returns the primary feature index.
      Returns:
      the primary feature index.
    • setSRID Link icon

      void setSRID(int aSRID)
      Sets the Spatial Reference ID number.
      Parameters:
      aSRID - a spatial reference ID.
    • getSRID Link icon

      int getSRID()
      Returns the Spatial Reference ID number.
      Returns:
      the Spatial reference ID number.
    • setEllipsoid Link icon

      void setEllipsoid(ILcdEllipsoid aEllipsoid)
      Sets the ellipsoid of the database object's reference.
      Parameters:
      aEllipsoid - the ellipsoid of the database object's reference.
    • getEllipsoid Link icon

      ILcdEllipsoid getEllipsoid()
      Returns the ellipsoid of the database object reference.
      Returns:
      an ellipsoid
    • setBounds Link icon

      void setBounds(ILcdBounds aBounds)
      Sets the bounds of the geometry.
      Parameters:
      aBounds - the bounds of the geometry.
    • getBounds Link icon

      ILcdBounds getBounds()
      returns the bounds of the geometry.
      Returns:
      the bounds of the geometry.
    • setGeometryType Link icon

      void setGeometryType(String aGeometryType)
      Sets the type of the geometry.
      Parameters:
      aGeometryType - type of the geometry.
    • getGeometryType Link icon

      String getGeometryType()
      Returns the type of the geometry.
      Returns:
      type of the geometry.
    • setFeatureTypes Link icon

      void setFeatureTypes(String[] aFeatureTypes)
      Sets the types of the features.
      Parameters:
      aFeatureTypes - the types of the features.
    • getFeatureType Link icon

      String getFeatureType(int aIndex)
      Returns the type of a given feature.
      Parameters:
      aIndex - the feature index.
      Returns:
      the feature type.
    • getColumnNames Link icon

      String getColumnNames()
      Concatenates the main column name and the feature column names into a single String of comma-separated column names.
      Returns:
      a String containing the comma-separated column names.
    • getColumnNamesAndTypes Link icon

      String getColumnNamesAndTypes()
      Concatenates the main column name and type, and the feature column names and types into a single String of comma-separated column names and types.
      Returns:
      a String containing the main column name and type, and the feature column names and types, separated by commas.
    • close Link icon

      void close()
      Closes the Connection of this descriptor, if it was opened.
    • clone Link icon

      Object clone()