Uses of Interface
org.jooq.Meta
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Meta in org.jooq
Modifier and TypeMethodDescription@NotNull Meta
Apply a migration to this meta to produce a newMeta
.@NotNull Meta
Meta.apply
(Collection<? extends Query> migration) Apply a migration to this meta to produce a newMeta
.@NotNull Meta
Apply a migration to this meta to produce a newMeta
.@NotNull Meta
Apply a migration to this meta to produce a newMeta
.@NotNull Meta
Meta.filterCatalogs
(Predicate<? super Catalog> filter) Create a wrapperMeta
instance filtering out some catalogs.@NotNull Meta
Meta.filterDomains
(Predicate<? super Domain<?>> filter) Create a wrapperMeta
instance filtering out some domains.@NotNull Meta
Meta.filterForeignKeys
(Predicate<? super ForeignKey<?, ?>> filter) Create a wrapperMeta
instance filtering out some foreign keys.@NotNull Meta
Meta.filterIndexes
(Predicate<? super Index> filter) Create a wrapperMeta
instance filtering out some indexes.@NotNull Meta
Meta.filterPrimaryKeys
(Predicate<? super UniqueKey<?>> filter) Create a wrapperMeta
instance filtering out some primary keys.@NotNull Meta
Meta.filterSchemas
(Predicate<? super Schema> filter) Create a wrapperMeta
instance filtering out some schemas.@NotNull Meta
Meta.filterSequences
(Predicate<? super Sequence<?>> filter) Create a wrapperMeta
instance filtering out some sequences.@NotNull Meta
Meta.filterTables
(Predicate<? super Table<?>> filter) Create a wrapperMeta
instance filtering out some tables.@NotNull Meta
Meta.filterUniqueKeys
(Predicate<? super UniqueKey<?>> filter) Create a wrapperMeta
instance filtering out some unique keys.@NotNull Meta
Commit.meta()
Get the meta data representing this commit.@NotNull Meta
DSLContext.meta()
Access the database meta data.@NotNull Meta
Create meta data from a set of sources.@NotNull Meta
DSLContext.meta
(DatabaseMetaData meta) Access the database meta data from an explicit JDBCDatabaseMetaData
.@NotNull Meta
Access the database meta data from explicit catalog information.@NotNull Meta
Create meta data from a set of DDL queries.@NotNull Meta
Access the database meta data from explicit schema information.@NotNull Meta
Create meta data from a set of sources.@NotNull Meta
Access the database meta data from explicit table information.@NotNull Meta
DSLContext.meta
(InformationSchema schema) Access the database meta data from an explicit JAXB-annotated meta model.@NotNull Meta
Version.meta()
The version'sMeta
representation of the database.@NotNull Meta
MetaProvider.provide()
Provide meta data information.@NotNull Meta
Meta.snapshot()
Eager-create an in-memory copy of thisMeta
instance without any connection to the original data source.Modifier and TypeMethodDescription@NotNull Version
Commit a newMeta
representation to the version graph.@NotNull Queries
Generate a migration script to get from this meta data to another one.@NotNull Queries
Meta.migrateTo
(Meta other, MigrationConfiguration configuration) Generate a migration script to get from this meta data to another one. -
Uses of Meta in org.jooq.impl
Modifier and TypeMethodDescriptionDefaultDSLContext.meta()
DefaultDSLContext.meta
(DatabaseMetaData meta) DefaultDSLContext.meta
(InformationSchema schema) CatalogMetaProvider.provide()
DefaultMetaProvider.provide()
InformationSchemaMetaProvider.provide()
SchemaMetaProvider.provide()
TableMetaProvider.provide()