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
 ColumnInterface KeyAssociationInterface.getForeignKeyColumn()
          Get the owing table Column participating in this association
 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
 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
 void QueryClauseInterface.addColumn(ColumnInterface column)
           
 void DataTableInterface.addColumn(ColumnInterface column)
          Add a column to this table.
 void ColumnContainerInterface.addColumn(ColumnInterface column)
          Add a column to the the underneath Key or Index container
 void DataTableInterface.addColumnAt(ColumnInterface column, int index)
          Inserts the column at the specified position in this List.
 void ColumnContainerInterface.addColumnAt(ColumnInterface column, int pos)
          Add a column to the the underneath Key or Index container at specified position in Column List.
 IndexInterface PhysicalTableInterface.addSimpleIndex(ColumnInterface column)
          Add a Simple Index (contains only 1 column) to the physical table.
 IndexInterface IndexInterface.convertToSimpleIndex(ColumnInterface column)
          Convert composite index (contains more than 1 column) to simple index (contains only 1 column)
 void QueryClauseInterface.removeColumn(ColumnInterface column)
           
 void DataTableInterface.removeColumn(ColumnInterface column)
          Remove a column from this table.
 void ColumnContainerInterface.removeColumn(ColumnInterface column)
          Remove a column from the underneath Key or Index container
 void KeyAssociationInterface.setForeignKeyColumn(ColumnInterface column)
          Set the owing table Column participating in this association
 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
 void ColumnContainerInterface.addColumns(java.util.List<ColumnInterface> column)
          Add a column list to the the underneath Key or Index container
 IndexInterface PhysicalTableInterface.addIndex(java.lang.String name, java.util.List<ColumnInterface> listColumn)
          Add a Index to the physical table.
 RelationalKeyInterface RelationalTableInterface.addPrimaryKey(java.lang.String name, java.util.List<ColumnInterface> listColumn)
          Add a Primary key to the relational table.
 RelationalKeyInterface RelationalTableInterface.addUniqueKey(java.lang.String name, java.util.List<ColumnInterface> listColumn)
          Add a Unique key to the relational table.
 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)
 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.