Uses of Class
org.axiondb.ColumnIdentifier

Packages that use ColumnIdentifier
org.axiondb Core interfaces, identifiers, and exceptions. 
org.axiondb.engine Core database machinery. 
org.axiondb.engine.commands AxionCommand implementations. 
org.axiondb.engine.tables   
org.axiondb.parser SQL parser interface and implementation classes. 
 

Uses of ColumnIdentifier in org.axiondb
 

Methods in org.axiondb that return ColumnIdentifier
 ColumnIdentifier ColumnIdentifier.getCanonicalIdentifier()
           
 

Methods in org.axiondb with parameters of type ColumnIdentifier
 Object RowDecorator.get(ColumnIdentifier colid)
          Returns the value of the specified column.
 boolean Table.hasColumn(ColumnIdentifier id)
          Indicate whether the ColumnIdentifierreferences a column in this table
 

Uses of ColumnIdentifier in org.axiondb.engine
 

Methods in org.axiondb.engine with parameters of type ColumnIdentifier
 boolean TransactableTableImpl.hasColumn(ColumnIdentifier id)
           
 

Uses of ColumnIdentifier in org.axiondb.engine.commands
 

Methods in org.axiondb.engine.commands that return ColumnIdentifier
 ColumnIdentifier CreateIndexCommand.getColumn(int i)
           
 

Methods in org.axiondb.engine.commands with parameters of type ColumnIdentifier
 void CreateIndexCommand.addColumn(ColumnIdentifier col)
           
 void InsertCommand.addColumn(ColumnIdentifier col)
           
 void UpdateCommand.addColumn(ColumnIdentifier col)
           
 void UpsertCommand.addUpdateColumn(ColumnIdentifier col)
           
protected  Object BaseAxionCommand.attemptToConvertValue(Object val, DataType type, ColumnIdentifier colid)
           
 

Constructors in org.axiondb.engine.commands with parameters of type ColumnIdentifier
InsertCommand(TableIdentifier table, ColumnIdentifier column, Selectable value)
           
 

Uses of ColumnIdentifier in org.axiondb.engine.tables
 

Methods in org.axiondb.engine.tables with parameters of type ColumnIdentifier
 boolean BaseTable.hasColumn(ColumnIdentifier id)
           
 boolean TableView.hasColumn(ColumnIdentifier id)
           
 

Uses of ColumnIdentifier in org.axiondb.parser
 

Methods in org.axiondb.parser that return ColumnIdentifier
 ColumnIdentifier AxionSqlParser.SqlColumnRef()