Uses of Class
org.hibernate.boot.model.relational.Sequence
-
Packages that use Sequence Package Description org.hibernate.boot.model.relational Some SPIs related to DDL generation and schema management.org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.tool.schema.internal An implementation of the SPI for the tooling related to DDL generation, export, migration, and validation.org.hibernate.tool.schema.spi An SPI for the tooling related to DDL generation, export, migration, and validation. -
-
Uses of Sequence in org.hibernate.boot.model.relational
Methods in org.hibernate.boot.model.relational that return Sequence Modifier and Type Method Description SequenceNamespace. createSequence(Identifier logicalName, Function<Identifier,Sequence> creator)SequenceNamespace. locateSequence(Identifier name)Methods in org.hibernate.boot.model.relational that return types with arguments of type Sequence Modifier and Type Method Description Iterable<Sequence>Namespace. getSequences()Methods in org.hibernate.boot.model.relational with parameters of type Sequence Modifier and Type Method Description voidNamespace. registerSequence(Identifier logicalName, Sequence sequence)Method parameters in org.hibernate.boot.model.relational with type arguments of type Sequence Modifier and Type Method Description SequenceNamespace. createSequence(Identifier logicalName, Function<Identifier,Sequence> creator) -
Uses of Sequence in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi with parameters of type Sequence Modifier and Type Method Description voidAdditionalMappingContributions. contributeSequence(Sequence sequence)Contribute a materialized Sequence -
Uses of Sequence in org.hibernate.dialect
Methods in org.hibernate.dialect that return types with arguments of type Sequence Modifier and Type Method Description Exporter<Sequence>Dialect. getSequenceExporter()Exporter<Sequence>DialectDelegateWrapper. getSequenceExporter()Exporter<Sequence>SpannerDialect. getSequenceExporter()Exporter<Sequence>SQLServerDialect. getSequenceExporter() -
Uses of Sequence in org.hibernate.tool.schema.internal
Methods in org.hibernate.tool.schema.internal with parameters of type Sequence Modifier and Type Method Description String[]StandardSequenceExporter. getSqlCreateStrings(Sequence sequence, Metadata metadata, SqlStringGenerationContext context)String[]StandardSequenceExporter. getSqlDropStrings(Sequence sequence, Metadata metadata, SqlStringGenerationContext context)booleanDefaultSchemaFilter. includeSequence(Sequence sequence)protected voidAbstractSchemaValidator. validateSequence(Sequence sequence, SequenceInformation sequenceInformation) -
Uses of Sequence in org.hibernate.tool.schema.spi
Methods in org.hibernate.tool.schema.spi with parameters of type Sequence Modifier and Type Method Description booleanSchemaFilter. includeSequence(Sequence sequence)Should the given sequence be included? Iftrue, the sequence will be further processed; iffalse, processing will skip this sequence.
-