Package | Description |
---|---|
org.hibernate.id |
This package contains internal implementation classes for the
main API interfaces.
|
org.hibernate.id.insert | |
org.hibernate.persister.entity |
This package abstracts persistence mechanisms for
entities, and defines the Hibernate runtime
metamodel.
|
org.hibernate.sql |
This package defines helper classes for rendering SQL
fragments and SQL statements.
|
Modifier and Type | Class and Description |
---|---|
static class |
SequenceIdentityGenerator.NoCommentsInsert |
Modifier and Type | Method and Description |
---|---|
Insert |
SequenceIdentityGenerator.NoCommentsInsert.setComment(String comment) |
Modifier and Type | Class and Description |
---|---|
class |
IdentifierGeneratingInsert
Nothing more than a distinguishing subclass of Insert used to indicate
intent.
|
class |
InsertSelectIdentityInsert
Specialized IdentifierGeneratingInsert which appends the database
specific clause which signifies to return generated IDENTITY values
to the end of the insert statement.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SingleTableEntityPersister.addDiscriminatorToInsert(Insert insert) |
protected void |
AbstractEntityPersister.addDiscriminatorToInsert(Insert insert) |
protected void |
JoinedSubclassEntityPersister.addDiscriminatorToInsert(Insert insert) |
Modifier and Type | Method and Description |
---|---|
Insert |
Insert.addColumn(String columnName) |
Insert |
Insert.addColumn(String columnName,
Object value,
LiteralType type) |
Insert |
Insert.addColumn(String columnName,
String valueExpression) |
Insert |
Insert.addColumns(String[] columnNames) |
Insert |
Insert.addColumns(String[] columnNames,
boolean[] insertable) |
Insert |
Insert.addColumns(String[] columnNames,
boolean[] insertable,
String[] valueExpressions) |
Insert |
Insert.addIdentityColumn(String columnName) |
Insert |
Insert.setComment(String comment) |
Insert |
Insert.setTableName(String tableName) |
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.