Uses of Interface
org.ujorm.orm.ColumnWrapper

Packages that use ColumnWrapper
org.ujorm.orm The ORM support. 
org.ujorm.orm.dialect   
org.ujorm.orm.impl   
org.ujorm.orm.metaModel   
 

Uses of ColumnWrapper in org.ujorm.orm
 

Methods in org.ujorm.orm that return ColumnWrapper
 ColumnWrapper AliasKey.getColumn(OrmHandler handler)
          Create a new ColumnWrapper for a required alias
 ColumnWrapper[] Query.getColumnArray()
          Create a new column List.
 

Methods in org.ujorm.orm that return types with arguments of type ColumnWrapper
 List<? extends ColumnWrapper> TableWrapper.getColumns()
          Get all table columns
 List<ColumnWrapper> Query.getColumns()
          Get Column Collection
protected  List<ColumnWrapper> Query.getDefaultColumns()
          Returns all direct columns of the base table.
 

Methods in org.ujorm.orm with parameters of type ColumnWrapper
protected  void Query.addMissingColumn(ColumnWrapper column, boolean addChilds, boolean checkDuplicities)
          Add a missing column.
protected  String SqlDialect.getAliasColumnName(ColumnWrapper column)
          Returns quoted column name including the alias table
 Appendable SqlDialect.printColumnAlias(ColumnWrapper column, Appendable out)
          Print a full SQL column alias name by sample: "TABLE_ALIAS"."ORIG_COLUMN"
protected  ValueCriterion SqlDialect.printCriterionValue(String template, ColumnWrapper column, ValueCriterion crit, Appendable out)
          Write a right value form criterion
 void SqlDialect.printForeignKey(ValueCriterion crit, ColumnWrapper column, String template, Appendable out)
          Print all items of the foreign key
 

Method parameters in org.ujorm.orm with type arguments of type ColumnWrapper
 void SqlDialect.printTableColumns(Collection<? extends ColumnWrapper> columns, Appendable values, Appendable out)
          Print table columns
 Query<UJO> Query.setColumns(Collection<ColumnWrapper> columns)
          Set an list of required columns to reading from database table.
 

Uses of ColumnWrapper in org.ujorm.orm.dialect
 

Method parameters in org.ujorm.orm.dialect with type arguments of type ColumnWrapper
protected  void MSSqlDialect.printTableColumnsUnderAliases(Collection<ColumnWrapper> columnWrappers, Appendable out)
          prints columns in _ separated by comma
protected  void MSSqlDialect.printTableColumnsWithUnderAliases(Collection<ColumnWrapper> columnWrappers, Appendable out)
          prints columns in ". AS _" format separated by comma
 

Uses of ColumnWrapper in org.ujorm.orm.impl
 

Classes in org.ujorm.orm.impl that implement ColumnWrapper
 class ColumnWrapperImpl
          Wrapper for a MetaColumn
 

Methods in org.ujorm.orm.impl that return types with arguments of type ColumnWrapper
 List<? extends ColumnWrapper> TableWrapperImpl.getColumns()
           
 

Uses of ColumnWrapper in org.ujorm.orm.metaModel
 

Classes in org.ujorm.orm.metaModel that implement ColumnWrapper
 class MetaColumn
          Database column meta-data
 

Methods in org.ujorm.orm.metaModel that return ColumnWrapper
 ColumnWrapper MetaColumn.addTableAlias(String alias)
          Create new object column for the new alias
 

Methods in org.ujorm.orm.metaModel that return types with arguments of type ColumnWrapper
 List<? extends ColumnWrapper> MetaTable.getColumns()
          Returns all columns
 



Copyright 2013, Pavel Ponec