Uses of Class
org.hibernate.mapping.Column
-
Packages that use Column Package Description org.hibernate.boot.spi org.hibernate.cfg org.hibernate.dialect.unique Support for Dialect-specific unique constraint definitionorg.hibernate.id org.hibernate.mapping -
-
Uses of Column in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi with parameters of type Column Modifier and Type Method Description voidInFlightMetadataCollector. addColumnNameBinding(Table table, String logicalColumnName, Column column)voidInFlightMetadataCollector. addColumnNameBinding(Table table, Identifier logicalColumnName, Column column) -
Uses of Column in org.hibernate.cfg
Methods in org.hibernate.cfg that return Column Modifier and Type Method Description ColumnAnnotatedColumn. getMappingColumn()Methods in org.hibernate.cfg with parameters of type Column Modifier and Type Method Description voidAnnotatedJoinColumn. linkValueUsingAColumnCopy(Column column, SimpleValue value)used for mappedBy casesvoidAnnotatedJoinColumn. linkValueUsingDefaultColumnNaming(Column referencedColumn, PersistentClass referencedEntity, SimpleValue value)voidAnnotatedJoinColumn. overrideFromReferencedColumnIfNecessary(Column column)Called to apply column definitions from the referenced FK column to this column.protected voidAnnotatedColumn. setMappingColumn(Column mappingColumn) -
Uses of Column in org.hibernate.dialect.unique
Methods in org.hibernate.dialect.unique with parameters of type Column Modifier and Type Method Description StringDefaultUniqueDelegate. getColumnDefinitionUniquenessFragment(Column column, SqlStringGenerationContext context)StringUniqueDelegate. getColumnDefinitionUniquenessFragment(Column column, SqlStringGenerationContext context)Get the fragment that can be used to make a column unique as part of its column definition. -
Uses of Column in org.hibernate.id
Subclasses of Column in org.hibernate.id Modifier and Type Class Description classExportableColumnMethods in org.hibernate.id that return types with arguments of type Column Modifier and Type Method Description List<Column>ExportableColumn.ValueImpl. getColumns() -
Uses of Column in org.hibernate.mapping
Methods in org.hibernate.mapping that return Column Modifier and Type Method Description ColumnColumn. clone()Shallow copy, the value is not copiedColumnConstraint. getColumn(int i)ColumnDenormalizedTable. getColumn(Identifier name)ColumnDenormalizedTable. getColumn(Column column)ColumnTable. getColumn(int n)ColumnTable. getColumn(Identifier name)ColumnTable. getColumn(Column column)Return the column which is identified by column provided as argument.Methods in org.hibernate.mapping that return types with arguments of type Column Modifier and Type Method Description Iterator<Column>Constraint. getColumnIterator()Deprecated.Iterator<Column>DenormalizedTable. getColumnIterator()Deprecated.Iterator<Column>Index. getColumnIterator()Iterator<Column>Table. getColumnIterator()Deprecated.Map<Column,String>Index. getColumnOrderMap()Map<Column,String>UniqueKey. getColumnOrderMap()List<Column>Collection. getColumns()List<Column>Component. getColumns()List<Column>Constraint. getColumns()Collection<Column>DenormalizedTable. getColumns()List<Column>OneToMany. getColumns()List<Column>Property. getColumns()Delegates toValue.getColumns().List<Column>SimpleValue. getColumns()Collection<Column>Table. getColumns()List<Column>Value. getColumns()If the mapping involves only columns, return them.List<Column>OneToOne. getConstraintColumns()default List<Column>Value. getConstraintColumns()Same asValue.getColumns()except it returns the PK for the non-owning side of a one-to-one association.List<Column>ForeignKey. getReferencedColumns()Returns the referenced columns if the foreignkey does not refer to the primary keyMethods in org.hibernate.mapping with parameters of type Column Modifier and Type Method Description voidAny. addColumn(Column column)voidAny. addColumn(Column column, boolean isInsertable, boolean isUpdatable)voidAny.KeyValue. addColumn(Column column)voidAny.KeyValue. addColumn(Column column, boolean isInsertable, boolean isUpdatable)voidAny.MetaValue. addColumn(Column column)voidAny.MetaValue. addColumn(Column column, boolean isInsertable, boolean isUpdatable)voidBasicValue. addColumn(Column incomingColumn)voidBasicValue. addColumn(Column incomingColumn, boolean isInsertable, boolean isUpdatable)voidComponent. addColumn(Column column)voidConstraint. addColumn(Column column)voidIndex. addColumn(Column column)voidIndex. addColumn(Column column, String order)voidPrimaryKey. addColumn(Column column)voidSimpleValue. addColumn(Column column)voidSimpleValue. addColumn(Column column, boolean isInsertable, boolean isUpdatable)voidTable. addColumn(Column column)voidUniqueKey. addColumn(Column column, String order)booleanConstraint. containsColumn(Column column)booleanDenormalizedTable. containsColumn(Column column)booleanIndex. containsColumn(Column column)booleanTable. containsColumn(Column column)booleanColumn. equals(Column column)static StringConstraint. 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.ColumnDenormalizedTable. getColumn(Column column)ColumnTable. getColumn(Column column)Return the column which is identified by column provided as argument.protected StringPrimaryKey. getTableNameForLogging(Column column)protected voidSimpleValue. justAddColumn(Column column)protected voidSimpleValue. justAddColumn(Column column, boolean insertable, boolean updatable)Method parameters in org.hibernate.mapping with type arguments of type Column Modifier and Type Method Description voidForeignKey. addReferencedColumns(List<Column> referencedColumns)static StringIndex. buildSqlCreateIndexString(SqlStringGenerationContext context, String name, Table table, Iterator<Column> columns, Map<Column,String> columnOrderMap, boolean unique, String defaultCatalog, String defaultSchema)static StringIndex. buildSqlCreateIndexString(SqlStringGenerationContext context, String name, Table table, Iterator<Column> columns, Map<Column,String> columnOrderMap, boolean unique, String defaultCatalog, String defaultSchema)static StringIndex. buildSqlCreateIndexString(SqlStringGenerationContext context, String name, Table table, Iterator<Column> columns, Map<Column,String> columnOrderMap, boolean unique, Metadata metadata)static StringIndex. buildSqlCreateIndexString(SqlStringGenerationContext context, String name, Table table, Iterator<Column> columns, Map<Column,String> columnOrderMap, boolean unique, Metadata metadata)static StringIndex. buildSqlCreateIndexString(Dialect dialect, String name, String tableName, Iterator<Column> columns, Map<Column,String> columnOrderMap, boolean unique)static StringIndex. buildSqlCreateIndexString(Dialect dialect, String name, String tableName, Iterator<Column> columns, Map<Column,String> columnOrderMap, boolean unique)ForeignKeyTable. createForeignKey(String keyName, List<Column> keyColumns, String referencedEntityName, String keyDefinition)ForeignKeyTable. createForeignKey(String keyName, List<Column> keyColumns, String referencedEntityName, String keyDefinition, List<Column> referencedColumns)UniqueKeyTable. createUniqueKey(List<Column> keyColumns)static StringConstraint. generateName(String prefix, Table table, List<Column> columns)Helper method forConstraint.generateName(String, Table, Column...).
-