Uses of Class
org.hibernate.mapping.Column
-
Packages that use Column Package Description org.hibernate.boot.internal org.hibernate.boot.model.internal org.hibernate.boot.model.relational Some SPIs related to DDL generation and schema management.org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.dialect.aggregate Support forDialect
-specific aggregate column types, including user-defined composite types, and JSON or XML types.org.hibernate.dialect.unique Support forDialect
-specific unique constraint definition.org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.metamodel.mapping.internal org.hibernate.tool.schema.internal An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation. -
-
Uses of Column in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal with parameters of type Column Modifier and Type Method Description void
InFlightMetadataCollectorImpl. addColumnNameBinding(Table table, String logicalName, Column column)
void
InFlightMetadataCollectorImpl. addColumnNameBinding(Table table, Identifier logicalName, Column column)
-
Uses of Column in org.hibernate.boot.model.internal
Methods in org.hibernate.boot.model.internal that return Column Modifier and Type Method Description Column
AnnotatedColumn. getMappingColumn()
Methods in org.hibernate.boot.model.internal with parameters of type Column Modifier and Type Method Description void
AnnotatedJoinColumn. linkValueUsingAColumnCopy(Column column, SimpleValue value)
used for mappedBy casesvoid
AnnotatedJoinColumn. linkValueUsingDefaultColumnNaming(int columnIndex, Column referencedColumn, PersistentClass referencedEntity, SimpleValue value)
void
AnnotatedJoinColumn. linkValueUsingDefaultColumnNaming(Column referencedColumn, PersistentClass referencedEntity, SimpleValue value)
void
AnnotatedJoinColumn. overrideFromReferencedColumnIfNecessary(Column column)
Called to apply column definitions from the referenced FK column to this column.protected void
AnnotatedColumn. setMappingColumn(Column mappingColumn)
-
Uses of Column in org.hibernate.boot.model.relational
Methods in org.hibernate.boot.model.relational that return types with arguments of type Column Modifier and Type Method Description protected List<Column>
ColumnOrderingStrategyStandard. orderColumns(Collection<Column> columns, Metadata metadata)
List<Column>
ColumnOrderingStrategy. orderConstraintColumns(Constraint constraint, Metadata metadata)
Orders the columns of the constraint.List<Column>
ColumnOrderingStrategyLegacy. orderConstraintColumns(Constraint constraint, Metadata metadata)
List<Column>
ColumnOrderingStrategyStandard. orderConstraintColumns(Constraint constraint, Metadata metadata)
List<Column>
ColumnOrderingStrategy. orderTableColumns(Table table, Metadata metadata)
Orders the columns of the table.List<Column>
ColumnOrderingStrategyLegacy. orderTableColumns(Table table, Metadata metadata)
List<Column>
ColumnOrderingStrategyStandard. orderTableColumns(Table table, Metadata metadata)
List<Column>
ColumnOrderingStrategy. orderUserDefinedTypeColumns(UserDefinedObjectType userDefinedType, Metadata metadata)
Orders the columns of the user defined type.List<Column>
ColumnOrderingStrategyLegacy. orderUserDefinedTypeColumns(UserDefinedObjectType userDefinedType, Metadata metadata)
List<Column>
ColumnOrderingStrategyStandard. orderUserDefinedTypeColumns(UserDefinedObjectType userDefinedType, Metadata metadata)
Methods in org.hibernate.boot.model.relational with parameters of type Column Modifier and Type Method Description int
ColumnOrderingStrategyStandard.ColumnComparator. compare(Column o1, Column o2)
Method parameters in org.hibernate.boot.model.relational with type arguments of type Column Modifier and Type Method Description protected List<Column>
ColumnOrderingStrategyStandard. orderColumns(Collection<Column> columns, Metadata metadata)
-
Uses of Column in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi with parameters of type Column Modifier and Type Method Description void
InFlightMetadataCollector. addColumnNameBinding(Table table, String logicalColumnName, Column column)
void
InFlightMetadataCollector. addColumnNameBinding(Table table, Identifier logicalColumnName, Column column)
-
Uses of Column in org.hibernate.dialect
Method parameters in org.hibernate.dialect with type arguments of type Column Modifier and Type Method Description String
DB2Dialect. getCreateIndexTail(boolean unique, List<Column> columns)
String
DB2iDialect. getCreateIndexTail(boolean unique, List<Column> columns)
String
DB2zDialect. getCreateIndexTail(boolean unique, List<Column> columns)
String
Dialect. getCreateIndexTail(boolean unique, List<Column> columns)
A string to be appended to the end of thecreate index
command, usually to specify thatnull
values are to be considered distinct.String
DialectDelegateWrapper. getCreateIndexTail(boolean unique, List<Column> columns)
String
SQLServerDialect. getCreateIndexTail(boolean unique, List<Column> columns)
-
Uses of Column in org.hibernate.dialect.aggregate
Methods in org.hibernate.dialect.aggregate with parameters of type Column Modifier and Type Method Description String
AggregateSupport. aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
Returns the assignment expression to use forcolumn
, which is part of the aggregate type ofaggregatePath
.String
AggregateSupportImpl. aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
String
DB2AggregateSupport. aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
String
OracleAggregateSupport. aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
String
PostgreSQLAggregateSupport. aggregateComponentAssignmentExpression(String aggregateParentAssignmentExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
String
AggregateSupport. aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
Returns the custom read expression to use forcolumn
.String
AggregateSupportImpl. aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
String
DB2AggregateSupport. aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
String
OracleAggregateSupport. aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
String
PostgreSQLAggregateSupport. aggregateComponentCustomReadExpression(String template, String placeholder, String aggregateParentReadExpression, String columnExpression, AggregateColumn aggregateColumn, Column column)
Method parameters in org.hibernate.dialect.aggregate with type arguments of type Column Modifier and Type Method Description List<AuxiliaryDatabaseObject>
AggregateSupport. aggregateAuxiliaryDatabaseObjects(Namespace namespace, String aggregatePath, AggregateColumn aggregateColumn, List<Column> aggregatedColumns)
Allows to generate auxiliary database objects for an aggregate type.List<AuxiliaryDatabaseObject>
AggregateSupportImpl. aggregateAuxiliaryDatabaseObjects(Namespace namespace, String aggregatePath, AggregateColumn aggregateColumn, List<Column> aggregatedColumns)
List<AuxiliaryDatabaseObject>
DB2AggregateSupport. aggregateAuxiliaryDatabaseObjects(Namespace namespace, String aggregatePath, AggregateColumn aggregateColumn, List<Column> aggregatedColumns)
List<AuxiliaryDatabaseObject>
OracleAggregateSupport. aggregateAuxiliaryDatabaseObjects(Namespace namespace, String aggregatePath, AggregateColumn aggregateColumn, List<Column> aggregatedColumns)
String
AggregateSupport. aggregateCustomWriteExpression(AggregateColumn aggregateColumn, List<Column> aggregatedColumns)
Returns the custom write expression to use for an aggregate column of the given column type, containing the given aggregated columns.String
AggregateSupportImpl. aggregateCustomWriteExpression(AggregateColumn aggregateColumn, List<Column> aggregatedColumns)
String
DB2AggregateSupport. aggregateCustomWriteExpression(AggregateColumn aggregateColumn, List<Column> aggregatedColumns)
-
Uses of Column in org.hibernate.dialect.unique
Methods in org.hibernate.dialect.unique with parameters of type Column Modifier and Type Method Description String
AlterTableUniqueDelegate. getColumnDefinitionUniquenessFragment(Column column, SqlStringGenerationContext context)
String
CreateTableUniqueDelegate. getColumnDefinitionUniquenessFragment(Column column, SqlStringGenerationContext context)
String
SkipNullableUniqueDelegate. getColumnDefinitionUniquenessFragment(Column column, SqlStringGenerationContext context)
String
UniqueDelegate. getColumnDefinitionUniquenessFragment(Column column, SqlStringGenerationContext context)
Get the SQL fragment used to make the given column unique as part of its column definition, usually just" unique"
, or return an empty string if uniqueness does not belong in the column definition. -
Uses of Column in org.hibernate.id
Subclasses of Column in org.hibernate.id Modifier and Type Class Description class
ExportableColumn
Methods 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
Subclasses of Column in org.hibernate.mapping Modifier and Type Class Description class
AggregateColumn
An aggregate column is a column of typeSqlTypes.STRUCT
,SqlTypes.JSON
orSqlTypes.SQLXML
that aggregates a component into a single column.Methods in org.hibernate.mapping that return Column Modifier and Type Method Description Column
Column. clone()
Shallow copy, the value is not copiedColumn
Constraint. getColumn(int i)
Column
DenormalizedTable. getColumn(Identifier name)
Column
DenormalizedTable. getColumn(Column column)
Column
Table. getColumn(int n)
Column
Table. getColumn(Identifier name)
Column
Table. getColumn(InFlightMetadataCollector collector, String logicalName)
Column
Table. getColumn(Column column)
Return the column which is identified by column provided as argument.Column
UserDefinedObjectType. getColumn(int n)
Column
UserDefinedObjectType. getColumn(Identifier name)
Column
UserDefinedObjectType. getColumn(Column column)
Return the column which is identified by column provided as argument.Column
Collection. getSoftDeleteColumn()
Column
RootClass. getSoftDeleteColumn()
Column
SoftDeletable. getSoftDeleteColumn()
Methods in org.hibernate.mapping that return types with arguments of type Column Modifier and Type Method Description List<Column>
Component. getAggregatedColumns()
Map<Column,String>
Index. getColumnOrderMap()
Deprecated.Map<Column,String>
UniqueKey. getColumnOrderMap()
List<Column>
Collection. getColumns()
List<Column>
Component. getColumns()
List<Column>
Constraint. getColumns()
Collection<Column>
DenormalizedTable. getColumns()
List<Column>
Index. getColumns()
Deprecated.List<Column>
OneToMany. getColumns()
List<Column>
Property. getColumns()
Delegates toValue.getColumns()
.List<Column>
SimpleValue. getColumns()
Collection<Column>
Table. getColumns()
Collection<Column>
UserDefinedObjectType. getColumns()
List<Column>
Value. getColumns()
If the mapping involves only columns, return them.List<Column>
PrimaryKey. getColumnsInOriginalOrder()
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 void
Any. addColumn(Column column)
void
Any. addColumn(Column column, boolean isInsertable, boolean isUpdatable)
void
Any.KeyValue. addColumn(Column column)
void
Any.KeyValue. addColumn(Column column, boolean isInsertable, boolean isUpdatable)
void
Any.MetaValue. addColumn(Column column)
void
Any.MetaValue. addColumn(Column column, boolean isInsertable, boolean isUpdatable)
void
BasicValue. addColumn(Column incomingColumn)
void
BasicValue. addColumn(Column incomingColumn, boolean isInsertable, boolean isUpdatable)
void
Component. addColumn(Column column)
void
Constraint. addColumn(Column column)
void
PrimaryKey. addColumn(Column column)
void
SimpleValue. addColumn(Column column)
void
SimpleValue. addColumn(Column column, boolean isInsertable, boolean isUpdatable)
void
Table. addColumn(Column column)
void
UniqueKey. addColumn(Column column, String order)
void
UserDefinedObjectType. addColumn(Column column)
void
Table. columnRenamed(Column column)
boolean
Constraint. containsColumn(Column column)
boolean
DenormalizedTable. containsColumn(Column column)
boolean
Index. containsColumn(Column column)
Deprecated, for removal: This API element is subject to removal in a future version.boolean
Table. containsColumn(Column column)
boolean
UserDefinedObjectType. containsColumn(Column column)
void
Table. createUniqueKey(Column column, MetadataBuildingContext context)
Mark the given column unique.void
Collection. enableSoftDelete(Column indicatorColumn)
void
RootClass. enableSoftDelete(Column indicatorColumn)
void
SoftDeletable. enableSoftDelete(Column indicatorColumn)
boolean
Column. equals(Column column)
static String
Constraint. generateName(String prefix, Table table, Column... columns)
Deprecated, for removal: This API element is subject to removal in a future version.This method does not respect theImplicitNamingStrategy
Column
DenormalizedTable. getColumn(Column column)
Column
Table. getColumn(Column column)
Return the column which is identified by column provided as argument.Column
UserDefinedObjectType. getColumn(Column column)
Return the column which is identified by column provided as argument.protected String
PrimaryKey. getTableNameForLogging(Column column)
boolean
PersistentClass. isDefinedOnMultipleSubclasses(Column column)
boolean
Table. isPrimaryKey(Column column)
protected void
SimpleValue. justAddColumn(Column column)
protected void
SimpleValue. justAddColumn(Column column, boolean insertable, boolean updatable)
Method parameters in org.hibernate.mapping with type arguments of type Column Modifier and Type Method Description void
Index. addColumns(List<Column> extraColumns)
Deprecated, for removal: This API element is subject to removal in a future version.void
ForeignKey. addReferencedColumns(List<Column> referencedColumns)
static String
Index. buildSqlCreateIndexString(SqlStringGenerationContext context, String name, Table table, List<Column> columns, Map<Column,String> columnOrderMap, boolean unique, Metadata metadata)
Deprecated, for removal: This API element is subject to removal in a future version.This method will be removed in the next releasestatic String
Index. buildSqlCreateIndexString(SqlStringGenerationContext context, String name, Table table, List<Column> columns, Map<Column,String> columnOrderMap, boolean unique, Metadata metadata)
Deprecated, for removal: This API element is subject to removal in a future version.This method will be removed in the next releasestatic String
Index. buildSqlCreateIndexString(Dialect dialect, String name, String tableName, List<Column> columns, Map<Column,String> columnOrderMap, boolean unique)
Deprecated, for removal: This API element is subject to removal in a future version.This method will be removed in the next releasestatic String
Index. buildSqlCreateIndexString(Dialect dialect, String name, String tableName, List<Column> columns, Map<Column,String> columnOrderMap, boolean unique)
Deprecated, for removal: This API element is subject to removal in a future version.This method will be removed in the next releaseForeignKey
Table. createForeignKey(String keyName, List<Column> keyColumns, String referencedEntityName, String keyDefinition)
ForeignKey
Table. createForeignKey(String keyName, List<Column> keyColumns, String referencedEntityName, String keyDefinition, List<Column> referencedColumns)
void
Table. createUniqueKey(List<Column> keyColumns)
Deprecated, for removal: This API element is subject to removal in a future version.void
Table. createUniqueKey(List<Column> keyColumns, MetadataBuildingContext context)
If there is one given column, mark it unique, otherwise create aUniqueKey
comprising the given columns.static String
Constraint. generateName(String prefix, Table table, List<Column> columns)
Deprecated, for removal: This API element is subject to removal in a future version.This method does not respect theImplicitNamingStrategy
void
DenormalizedTable. reorderColumns(List<Column> columns)
void
PrimaryKey. reorderColumns(List<Column> reorderedColumns)
void
Table. reorderColumns(List<Column> columns)
void
UserDefinedObjectType. reorderColumns(List<Column> columns)
Constructors in org.hibernate.mapping with parameters of type Column Constructor Description AggregateColumn(Column column, Component component)
-
Uses of Column in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal with parameters of type Column Modifier and Type Method Description String
AbstractEmbeddableMapping.ConcreteTableResolver. resolve(Column column, JdbcEnvironment jdbcEnvironment)
static BasicType<?>
MappingModelCreationHelper. resolveAggregateColumnBasicType(MappingModelCreationProcess creationProcess, NavigableRole navigableRole, Column column)
-
Uses of Column in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type Column Modifier and Type Method Description protected void
AbstractSchemaValidator. validateColumnType(Table table, Column column, ColumnInformation columnInformation, Metadata metadata, ExecutionOptions options, Dialect dialect)
-