Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.4.0)

E13403-05

Uses of Class
oracle.javatools.db.Column

Packages that use Column
oracle.ide.db.panels Reusable UI panels for listing, creating or editing database objects in dialogs in the IDE. 
oracle.javatools.db Contains a metadata API for describing database objects, and retrieving them from a provider of database objects - for example a database. 
oracle.javatools.db.datatypes Classes related to datatypes in the database API. 
oracle.javatools.db.ora Contains the database api implementation for Oracle databases, and additional DBObject implementations for objects specific to Oracle. 
oracle.javatools.db.sql Contains an API for declaratively parsing SQL queries (SELECT statements). 
oracle.jdeveloper.engine.db   
oracle.jdeveloper.offlinedb Database API extension for saving database object definitions in XML files. 
 

Uses of Column in oracle.ide.db.panels
 

Methods in oracle.ide.db.panels with parameters of type Column
 DataTypeUsage DataTypePanel.commit(Column col)
           
 void DataTypePanel.initialise(DataTypeUsage dataTypeUsage, DBObjectProvider provider, Column col)
          Deprecated. 
 void DataTypePanel.initialise(DataTypeUsage dataTypeUsage, DBObjectProvider provider, Column col, oracle.ide.db.verifiers.table.ColumnInfoVerifier verifier)
           
 

Uses of Column in oracle.javatools.db
 

Subclasses of Column in oracle.javatools.db
 class ViewColumn
          Custom Column for Views to use when they have a DeclarativeSQLQuery.
 

Methods in oracle.javatools.db that return Column
 Column Relation.getColumn(java.lang.String name)
          Retrieves one column by name.
 Column[] ColumnConstraint.getColumns()
          Retrieves the constrained columns.
 Column[] Relation.getColumns()
          Retrieves the list of columns contained in this relation.
 Column[] Index.getColumns()
          Deprecated. as of 10.1.3 replaced by getColumnExpressions()
 

Methods in oracle.javatools.db with parameters of type Column
 void ColumnConstraint.addColumn(Column col)
          Adds a constrained column.
 void Relation.addColumn(Column col)
          Adds one column to this relation.
 void Index.addColumn(Column col)
          Deprecated. as of 10.1.3 replaced by addColumnExpression(IndexObject colexpr)
 void Relation.addColumn(int index, Column col)
          Adds one column to this relation at the given index.
static boolean ColumnConstraint.isConstrained(Column col, java.lang.String... constraintTypes)
          Tests whether the given Column appears in any ColumnConstraint on its owning table of given constraint types.
static boolean UniqueConstraint.isUnique(Column col)
          Returns true if the given table is constrained by a UniqueConstraint (including PKConstraint) in its parent table.
 boolean ColumnConstraint.removeColumn(Column col)
          Removes a column from the list of constrained columns.
 void Relation.removeColumn(Column col)
          Removes a column from this relation.
 void Index.removeColumn(Column col)
          Deprecated. as of 10.1.3 replaced by removeColumnExpressions(IndexObject colexpr)
 void ColumnConstraint.setColumns(Column[] columns)
          Sets the constrained columns.
 void Relation.setColumns(Column[] newCols)
          Sets the entire list of columns, replacing any that have previously been added.
 void Index.setColumns(Column[] cols)
          Deprecated. as of 10.1.3 replaced by setColumnExpressions(IndexObject[] colexprs)
 

Uses of Column in oracle.javatools.db.datatypes
 

Methods in oracle.javatools.db.datatypes with parameters of type Column
 java.lang.String BaseDateTimeDataType.validateDateTime(Column column, java.text.SimpleDateFormat format, java.lang.String equivalentOracleFormat)
          Deprecated. use validateDateTime( String defaultValue, ...)
 

Uses of Column in oracle.javatools.db.ora
 

Methods in oracle.javatools.db.ora that return Column
static Column[] OracleIndexPartitions.getValidGlobalPartitionColumns(Index index)
          Returns an array of columns that are eligible for global index partitioning.
 

Methods in oracle.javatools.db.ora with parameters of type Column
static LOBDescriptor LOBDescriptor.findLOBDescriptorForColumn(Column column)
           
static boolean LOBDescriptor.isLOBColumn(Column column)
           
static boolean LOBDescriptor.isVARRAYColumn(Column column)
           
 

Uses of Column in oracle.javatools.db.sql
 

Methods in oracle.javatools.db.sql with parameters of type Column
 SQLQueryBuilder.SQLQueryObjectSet SQLQueryBuilder.constructSelectObject(Column col, FromObject usageToUse)
          Creates a SelectObject for the query based on the column passed in.
 SQLQueryBuilder.SQLQueryObjectSet AbstractSQLQueryBuilder.constructSelectObject(Column col, FromObject usageToUse)
           
 SQLQueryBuilder.SQLQueryObjectSet SQLQueryBuilder.constructSelectObjects(Column[] baseCols, FromObject[] usagesToUse)
          Creates a set of SelectObjects for the query based on the columns passed in.
 SQLQueryBuilder.SQLQueryObjectSet AbstractSQLQueryBuilder.constructSelectObjects(Column[] baseCols, FromObject[] usagesToUse)
           
protected  SelectObject AbstractSQLQueryBuilder.doConstructSelectObject(Column col, java.util.Map relsToUse, java.util.Map newRels, java.util.List relNames, java.util.List colNames)
           
 

Uses of Column in oracle.jdeveloper.engine.db
 

Constructors in oracle.jdeveloper.engine.db with parameters of type Column
DBColumn(Column column, DBTable dbTable)
           
DBForeignKey(FKConstraint fkConstraint, UniqueConstraint pkConstraint, int seq, Column fkColumn, Column pkColumn)
           
 

Uses of Column in oracle.jdeveloper.offlinedb
 

Methods in oracle.jdeveloper.offlinedb that return Column
 Column OfflineDBObjectFactory.newColumn(Relation parent)
          Deprecated. 
 Column OfflineDBObjectFactory.newColumn(java.lang.String name, Relation parent)
          Deprecated. 
 


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.4.0)

E13403-05

Copyright © 1997, 2011, Oracle. All rights reserved.