Uses of Class
org.hibernate.mapping.Column

Packages that use Column
org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel. 
org.hibernate.dialect.unique   
org.hibernate.envers.configuration.metadata   
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
 

Uses of Column in org.hibernate.cfg
 

Methods in org.hibernate.cfg that return Column
 Column Ejb3Column.getMappingColumn()
           
 

Methods in org.hibernate.cfg with parameters of type Column
 void Configuration.MappingsImpl.addColumnBinding(String logicalName, Column physicalColumn, Table table)
           
 void Mappings.addColumnBinding(String logicalName, Column physicalColumn, Table table)
          Binds the given 'physicalColumn' to the give 'logicalName' within the given 'table'.
static void HbmBinder.bindColumn(org.dom4j.Element node, Column column, boolean isNullable)
           
 void Ejb3JoinColumn.linkValueUsingAColumnCopy(Column column, SimpleValue value)
          used for mappedBy cases
 void Ejb3JoinColumn.linkValueUsingDefaultColumnNaming(Column referencedColumn, PersistentClass referencedEntity, SimpleValue value)
           
 void Ejb3JoinColumn.overrideFromReferencedColumnIfNecessary(Column column)
          Called to apply column definitions from the referenced FK column to this column.
protected  void Ejb3Column.setMappingColumn(Column mappingColumn)
           
 

Uses of Column in org.hibernate.dialect.unique
 

Methods in org.hibernate.dialect.unique with parameters of type Column
 String DefaultUniqueDelegate.applyUniqueToColumn(Column column)
           
 String UniqueDelegate.applyUniqueToColumn(Column column)
          If the dialect does not supports unique constraints, this method should return the syntax necessary to mutate the column definition (usually "unique").
 

Uses of Column in org.hibernate.envers.configuration.metadata
 

Methods in org.hibernate.envers.configuration.metadata with parameters of type Column
static void MetadataTools.addColumn(org.dom4j.Element any_mapping, Column column)
          Adds column element with the following attributes (unless empty): name, length, scale, precision, sql-type, read and write.
 

Method parameters in org.hibernate.envers.configuration.metadata with type arguments of type Column
static void MetadataTools.addColumns(org.dom4j.Element any_mapping, Iterator<Column> columns)
           
static MetadataTools.ColumnNameIterator MetadataTools.getColumnNameIterator(Iterator<Column> columnIterator)
           
 

Uses of Column in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return Column
 Column Column.clone()
          Shallow copy, the value is not copied
 Column DenormalizedTable.getColumn(Column column)
           
 Column Table.getColumn(Column column)
          Return the column which is identified by column provided as argument.
 Column Table.getColumn(int n)
           
 Column Constraint.getColumn(int i)
           
 

Methods in org.hibernate.mapping with parameters of type Column
 void Component.addColumn(Column column)
           
 void SimpleValue.addColumn(Column column)
           
 void Table.addColumn(Column column)
           
 void Constraint.addColumn(Column column)
           
 void Index.addColumn(Column column)
           
 boolean DenormalizedTable.containsColumn(Column column)
           
 boolean Table.containsColumn(Column column)
           
 boolean Constraint.containsColumn(Column column)
           
 boolean Index.containsColumn(Column column)
           
 boolean Column.equals(Column column)
           
static String Constraint.generateName(String prefix, Table table, Column... columns)
          If a constraint is not explicitly named, this is called to generate a unique hash using the table and column names.
 Column DenormalizedTable.getColumn(Column column)
           
 Column Table.getColumn(Column column)
          Return the column which is identified by column provided as argument.
 

Method parameters in org.hibernate.mapping with type arguments of type Column
static String Constraint.generateName(String prefix, Table table, List<Column> columns)
          Helper method for Constraint.generateName(String, Table, Column...).
 



Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.