Uses of Interface
org.jooq.Domain
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Domain in org.jooq
Modifier and TypeMethodDescriptionDataType.getDomain()
Get the defining DOMAIN type orNULL
if there is no such type.@Nullable Domain<?>
Get a domain by its name (case-sensitive) in this schema, ornull
if no such domain exists.@Nullable Domain<?>
Get a domain by its qualified or unqualified name in this schema, ornull
if no such domain exists.Modifier and TypeMethodDescriptionSchema.domainStream()
Stream all domains contained in this schema.Meta.getDomains()
Get all domain objects from the underlying meta data source.Meta.getDomains
(String name) Get all domain objects by name from the underlying meta data source.Meta.getDomains
(Name name) Get all domain objects by name from the underlying meta data source.Schema.getDomains()
List all domains contained in this schema.Modifier and TypeMethodDescription<T> @NotNull AlterDomainStep<T>
DSLContext.alterDomain
(Domain<T> domain) TheALTER DOMAIN
statement.<T> @NotNull AlterDomainStep<T>
DSLContext.alterDomainIfExists
(Domain<T> domain) TheALTER DOMAIN IF EXISTS
statement.@NotNull CreateDomainAsStep
DSLContext.createDomain
(Domain<?> domain) TheCREATE DOMAIN
statement.@NotNull CreateDomainAsStep
DSLContext.createDomainIfNotExists
(Domain<?> domain) TheCREATE DOMAIN IF NOT EXISTS
statement.@NotNull DropDomainCascadeStep
DSLContext.dropDomain
(Domain<?> domain) TheDROP DOMAIN
statement.@NotNull DropDomainCascadeStep
DSLContext.dropDomainIfExists
(Domain<?> domain) TheDROP DOMAIN IF EXISTS
statement.@NotNull AlterDomainFinalStep
Add theRENAME TO
clause to theALTER DOMAIN
statement.Modifier and TypeMethodDescription@NotNull Meta
Meta.filterDomains
(Predicate<? super Domain<?>> filter) Create a wrapperMeta
instance filtering out some domains. -
Uses of Domain in org.jooq.impl
Modifier and TypeMethodDescriptionQOM.AlterDomain.$domain()
@NotNull Domain<?>
QOM.CreateDomain.$domain()
@NotNull Domain<?>
QOM.DropDomain.$domain()
@Nullable Domain<?>
QOM.AlterDomain.$renameTo()
static final <T,
U> @NotNull Domain<U> Internal.createDomain
(Schema schema, Name name, DataType<T> type, Binding<T, U> binding, Check<?>... checks) Factory method for domain specifications.static final <T> @NotNull Domain<T>
Internal.createDomain
(Schema schema, Name name, DataType<T> type, Check<?>... checks) Factory method for domain specifications.static final <T,
U> @NotNull Domain<U> Internal.createDomain
(Schema schema, Name name, DataType<T> type, Converter<T, U> converter, Check<?>... checks) Factory method for domain specifications.static final <T,
X, U> @NotNull Domain<U> Internal.createDomain
(Schema schema, Name name, DataType<T> type, Converter<X, U> converter, Binding<T, X> binding, Check<?>... checks) Factory method for domain specifications.static @NotNull Domain<?>
Create aDOMAIN
reference.static @NotNull Domain<?>
Create aDOMAIN
reference.final Domain<?>
final Domain<?>
final Domain<?>
final Domain<?>
Modifier and TypeMethodDescriptionLazySchema.domainStream()
SchemaImpl.domainStream()
LazySchema.getDomains()
SchemaImpl.getDomains()
List all domains contained in this schema.Modifier and TypeMethodDescription@NotNull QOM.AlterDomain<T>
@NotNull QOM.CreateDomain<T>
@NotNull QOM.DropDomain
@NotNull QOM.AlterDomain<T>
<T> AlterDomainStep<T>
DefaultDSLContext.alterDomain
(Domain<T> domain) static <T> AlterDomainStep<T>
DSL.alterDomain
(Domain<T> domain) TheALTER DOMAIN
statement.<T> AlterDomainStep<T>
DefaultDSLContext.alterDomainIfExists
(Domain<T> domain) static <T> AlterDomainStep<T>
DSL.alterDomainIfExists
(Domain<T> domain) TheALTER DOMAIN IF EXISTS
statement.DefaultDSLContext.createDomain
(Domain<?> domain) static CreateDomainAsStep
DSL.createDomain
(Domain<?> domain) TheCREATE DOMAIN
statement.DefaultDSLContext.createDomainIfNotExists
(Domain<?> domain) static CreateDomainAsStep
DSL.createDomainIfNotExists
(Domain<?> domain) TheCREATE DOMAIN IF NOT EXISTS
statement.DefaultDSLContext.dropDomain
(Domain<?> domain) static DropDomainCascadeStep
DSL.dropDomain
(Domain<?> domain) TheDROP DOMAIN
statement.DefaultDSLContext.dropDomainIfExists
(Domain<?> domain) static DropDomainCascadeStep
DSL.dropDomainIfExists
(Domain<?> domain) TheDROP DOMAIN IF EXISTS
statement.