Uses of Interface
com.sas.services.information.metadata.ColumnInterface

Packages that use ColumnInterface
com.sas.services.information.metadata Information Service metadata. 
 

Uses of ColumnInterface in com.sas.services.information.metadata
 

Methods in com.sas.services.information.metadata that return ColumnInterface
abstract  ColumnInterface KeyAssociationInterface.getForeignKeyColumn()
          Get the owing table Column participating in this association
abstract  ColumnInterface KeyAssociationInterface.getUniqueKeyColumn()
          Get the Unique Key table Column participating in this association
 

Methods in com.sas.services.information.metadata that return types with arguments of type ColumnInterface
abstract  java.util.List<ColumnInterface> ColumnHierarchyInterface.getColumns()
          Get the list of columns in this hierarchy.
abstract  java.util.List<ColumnInterface> ColumnContainerInterface.getColumns()
          Get all the columns present in the container
 

Methods in com.sas.services.information.metadata with parameters of type ColumnInterface
abstract  void QueryClauseInterface.addColumn(ColumnInterface column)
           
abstract  void DataTableInterface.addColumn(ColumnInterface column)
          Add a column to this table.
abstract  void ColumnHierarchyInterface.addColumn(ColumnInterface column)
          Add a column to this hierarchy.
abstract  void ColumnContainerInterface.addColumn(ColumnInterface column)
          Add a column to the the underneath Key or Index container
abstract  void DataTableInterface.addColumnAt(ColumnInterface column, int index)
          Inserts the column at the specified position in this List.
abstract  void ColumnHierarchyInterface.addColumnAt(ColumnInterface column, int index)
          Inserts the column at the specified position in this List.
abstract  void ColumnContainerInterface.addColumnAt(ColumnInterface column, int pos)
          Add a column to the the underneath Key or Index container at specified position in Column List.
abstract  IndexInterface PhysicalTableInterface.addSimpleIndex(ColumnInterface column)
          Add a Simple Index (contains only 1 column) to the physical table.
abstract  IndexInterface IndexInterface.convertToSimpleIndex(ColumnInterface column)
          Convert composite index (contains more than 1 column) to simple index (contains only 1 column)
abstract  void QueryClauseInterface.removeColumn(ColumnInterface column)
           
abstract  void DataTableInterface.removeColumn(ColumnInterface column)
          Remove a column from this table.
abstract  void ColumnHierarchyInterface.removeColumn(ColumnInterface column)
          Remove a column from this hierarchy.
abstract  void ColumnContainerInterface.removeColumn(ColumnInterface column)
          Remove a column from the underneath Key or Index container
abstract  void KeyAssociationInterface.setForeignKeyColumn(ColumnInterface column)
          Set the owing table Column participating in this association
abstract  void KeyAssociationInterface.setUniqueKeyColumn(ColumnInterface column)
          Set the Unique Key table Column participating in this association
 

Method parameters in com.sas.services.information.metadata with type arguments of type ColumnInterface
abstract  void ColumnContainerInterface.addColumns(java.util.List<ColumnInterface> column)
          Add a column list to the the underneath Key or Index container
abstract  IndexInterface PhysicalTableInterface.addIndex(java.lang.String name, java.util.List<ColumnInterface> listColumn)
          Add a Index to the physical table.
abstract  RelationalKeyInterface RelationalTableInterface.addPrimaryKey(java.lang.String name, java.util.List<ColumnInterface> listColumn)
          Add a Primary key to the relational table.
abstract  RelationalKeyInterface RelationalTableInterface.addUniqueKey(java.lang.String name, java.util.List<ColumnInterface> listColumn)
          Add a Unique key to the relational table.
abstract  IndexInterface IndexInterface.convertToCompositeIndex(java.lang.String name, java.util.List<ColumnInterface> columns)
          Convert simple index (contains only 1 column) to composite index (contains more than 1 column)
abstract  void ColumnContainerInterface.removeColumns(java.util.List<ColumnInterface> column)
          Remove a column list from the underneath Key or Index container
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.