Package | Description |
---|---|
org.hibernate.dialect.unique | |
org.hibernate.metamodel.relational |
This package defines the metamodel of a relational database schema.
|
org.hibernate.persister.entity |
This package abstracts persistence mechanisms for
entities, and defines the Hibernate runtime
metamodel.
|
Modifier and Type | Method and Description |
---|---|
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").
|
String |
DefaultUniqueDelegate.applyUniqueToColumn(Column column) |
Modifier and Type | Method and Description |
---|---|
Column |
TableSpecification.locateOrCreateColumn(String name)
Factory method for creating a
Column associated with this container. |
Column |
AbstractTableSpecification.locateOrCreateColumn(String name) |
Modifier and Type | Method and Description |
---|---|
Iterable<Column> |
Constraint.getColumns()
Obtain the columns that are part of this constraint.
|
Iterable<Column> |
AbstractConstraint.getColumns() |
Iterable<Column> |
ForeignKey.getSourceColumns() |
Iterable<Column> |
ForeignKey.getTargetColumns() |
protected List<Column> |
AbstractConstraint.internalColumnAccess() |
Modifier and Type | Method and Description |
---|---|
void |
ForeignKey.addColumn(Column column) |
void |
AbstractConstraint.addColumn(Column column) |
void |
ForeignKey.addColumnMapping(Column sourceColumn,
Column targetColumn) |
protected void |
AbstractConstraint.internalAddColumn(Column column) |
Modifier and Type | Method and Description |
---|---|
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
TableSpecification table,
Iterable<Column> columns,
boolean unique) |
Modifier and Type | Method and Description |
---|---|
String |
AbstractEntityPersister.getTemplateFromColumn(Column column,
SessionFactoryImplementor factory) |
Copyright © 2018 JBoss by Red Hat. All rights reserved.