|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Column | |
|---|---|
| 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. |
| 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.metamodel.relational |
|---|
| Methods in org.hibernate.metamodel.relational that return Column | |
|---|---|
Column |
TableSpecification.locateOrCreateColumn(String name)
Factory method for creating a Column associated with this container. |
Column |
AbstractTableSpecification.locateOrCreateColumn(String name)
|
| Methods in org.hibernate.metamodel.relational that return types with arguments of type Column | |
|---|---|
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()
|
| Methods in org.hibernate.metamodel.relational with parameters of type Column | |
|---|---|
void |
ForeignKey.addColumn(Column column)
|
void |
AbstractConstraint.addColumn(Column column)
|
void |
ForeignKey.addColumnMapping(Column sourceColumn,
Column targetColumn)
|
protected void |
AbstractConstraint.internalAddColumn(Column column)
|
| Method parameters in org.hibernate.metamodel.relational with type arguments of type Column | |
|---|---|
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
TableSpecification table,
Iterable<Column> columns,
boolean unique)
|
| Uses of Column in org.hibernate.persister.entity |
|---|
| Methods in org.hibernate.persister.entity with parameters of type Column | |
|---|---|
String |
AbstractEntityPersister.getTemplateFromColumn(Column column,
SessionFactoryImplementor factory)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||