Uses of Interface
org.hibernate.boot.model.relational.Exportable
-
Packages that use Exportable Package Description org.hibernate.boot.model.relational org.hibernate.dialect.temptable org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.tool.schema.internal org.hibernate.tool.schema.spi -
-
Uses of Exportable in org.hibernate.boot.model.relational
Subinterfaces of Exportable in org.hibernate.boot.model.relational Modifier and Type Interface Description interface
AuxiliaryDatabaseObject
Auxiliary database objects (i.e., triggers, stored procedures, etc) defined in the mappings.interface
ContributableDatabaseObject
Contributable specialization for Tables and SequencesClasses in org.hibernate.boot.model.relational that implement Exportable Modifier and Type Class Description class
AbstractAuxiliaryDatabaseObject
Convenience base class forAuxiliaryDatabaseObject
s.class
NamedAuxiliaryDatabaseObject
Mainly this is used to support legacy sequence exporting.class
Sequence
Models a databaseSEQUENCE
.class
SimpleAuxiliaryDatabaseObject
A simple implementation of AbstractAuxiliaryDatabaseObject in which the CREATE and DROP strings are provided up front. -
Uses of Exportable in org.hibernate.dialect.temptable
Classes in org.hibernate.dialect.temptable that implement Exportable Modifier and Type Class Description class
TemporaryTable
-
Uses of Exportable in org.hibernate.mapping
Classes in org.hibernate.mapping that implement Exportable Modifier and Type Class Description class
Constraint
A mapping model object representing a constraint on a relational database table.class
DenormalizedTable
class
ForeignKey
A mapping model object representing a foreign key constraint.class
Index
A mapping model object representing an index on a relational database table.class
PrimaryKey
A mapping model object representing a primary key constraint.class
Table
A mapping model object representing a relational database table.class
UniqueKey
A mapping model object representing a unique key constraint on a relational database table.class
UserDefinedType
A mapping model object representing a relational database UDT. -
Uses of Exportable in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type Exportable Modifier and Type Method Description protected void
AbstractSchemaMigrator. checkExportIdentifier(Exportable exportable, Set<String> exportIdentifiers)
-
Uses of Exportable in org.hibernate.tool.schema.spi
Classes in org.hibernate.tool.schema.spi with type parameters of type Exportable Modifier and Type Interface Description interface
Exporter<T extends Exportable>
Defines a contract for exporting of database objects (tables, sequences, etc) for use in SQLCREATE
andDROP
scripts.
-