Package | Description |
---|---|
org.hibernate.boot.internal | |
org.hibernate.boot.spi | |
org.hibernate.cfg |
This package defines APIs for configuring Hibernate, and classes
for building the Hibernate configuration-time metamodel.
|
org.hibernate.dialect.unique |
Support for Dialect-specific unique constraint definition
|
org.hibernate.envers.configuration.internal.metadata | |
org.hibernate.id |
This package contains internal implementation classes for the
main API interfaces.
|
org.hibernate.mapping |
This package defines the Hibernate configuration-time metamodel.
|
org.hibernate.tool.schema.internal |
Modifier and Type | Method and Description |
---|---|
void |
InFlightMetadataCollectorImpl.addColumnNameBinding(Table table,
Identifier logicalName,
Column column) |
void |
InFlightMetadataCollectorImpl.addColumnNameBinding(Table table,
String logicalName,
Column column) |
Modifier and Type | Method and Description |
---|---|
void |
InFlightMetadataCollector.addColumnNameBinding(Table table,
Identifier logicalColumnName,
Column column) |
void |
InFlightMetadataCollector.addColumnNameBinding(Table table,
String logicalColumnName,
Column column) |
Modifier and Type | Method and Description |
---|---|
Column |
Ejb3Column.getMappingColumn() |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
String |
UniqueDelegate.getColumnDefinitionUniquenessFragment(Column column)
Get the fragment that can be used to make a column unique as part of its column definition.
|
String |
DefaultUniqueDelegate.getColumnDefinitionUniquenessFragment(Column column) |
Modifier and Type | Method and Description |
---|---|
static void |
MetadataTools.addColumn(org.dom4j.Element anyMapping,
Column column)
Adds
column element with the following attributes (unless empty): name ,
length , scale , precision , sql-type , read
and write . |
Modifier and Type | Class and Description |
---|---|
class |
ExportableColumn |
Modifier and Type | Method and Description |
---|---|
Column |
Column.clone()
Shallow copy, the value is not copied
|
Column |
Table.getColumn(Column column)
Return the column which is identified by column provided as argument.
|
Column |
DenormalizedTable.getColumn(Column column) |
Column |
Table.getColumn(Identifier name) |
Column |
DenormalizedTable.getColumn(Identifier name) |
Column |
Table.getColumn(int n) |
Column |
Constraint.getColumn(int i) |
Modifier and Type | Method and Description |
---|---|
Iterator<Column> |
Constraint.columnIterator() |
Iterator<Column> |
Index.getColumnIterator() |
Iterator<Column> |
Constraint.getColumnIterator() |
Map<Column,String> |
UniqueKey.getColumnOrderMap() |
List<Column> |
Constraint.getColumns() |
Modifier and Type | Method and Description |
---|---|
void |
Table.addColumn(Column column) |
void |
SimpleValue.addColumn(Column column) |
void |
PrimaryKey.addColumn(Column column) |
void |
Index.addColumn(Column column) |
void |
Constraint.addColumn(Column column) |
void |
Component.addColumn(Column column) |
void |
SimpleValue.addColumn(Column column,
boolean isInsertable,
boolean isUpdatable) |
void |
UniqueKey.addColumn(Column column,
String order) |
void |
Index.addColumn(Column column,
String order) |
boolean |
Table.containsColumn(Column column) |
boolean |
Index.containsColumn(Column column) |
boolean |
DenormalizedTable.containsColumn(Column column) |
boolean |
Constraint.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 |
Table.getColumn(Column column)
Return the column which is identified by column provided as argument.
|
Column |
DenormalizedTable.getColumn(Column column) |
protected String |
PrimaryKey.getTableNameForLogging(Column column) |
Modifier and Type | Method and Description |
---|---|
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
String tableName,
Iterator<Column> columns,
Map<Column,String> columnOrderMap,
boolean unique) |
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
String tableName,
Iterator<Column> columns,
Map<Column,String> columnOrderMap,
boolean unique) |
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
Table table,
Iterator<Column> columns,
boolean unique,
String defaultCatalog,
String defaultSchema) |
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
Table table,
Iterator<Column> columns,
Map<Column,String> columnOrderMap,
boolean unique,
Metadata metadata) |
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
Table table,
Iterator<Column> columns,
Map<Column,String> columnOrderMap,
boolean unique,
Metadata metadata) |
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
Table table,
Iterator<Column> columns,
Map<Column,String> columnOrderMap,
boolean unique,
String defaultCatalog,
String defaultSchema) |
static String |
Index.buildSqlCreateIndexString(Dialect dialect,
String name,
Table table,
Iterator<Column> columns,
Map<Column,String> columnOrderMap,
boolean unique,
String defaultCatalog,
String defaultSchema) |
static String |
Constraint.generateName(String prefix,
Table table,
List<Column> columns)
Helper method for
Constraint.generateName(String, Table, Column...) . |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractSchemaValidator.validateColumnType(Table table,
Column column,
ColumnInformation columnInformation,
Metadata metadata,
ExecutionOptions options,
Dialect dialect) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.