Uses of Interface
org.jooq.Domain
-
Packages that use Domain Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of Domain in org.jooq
Methods in org.jooq that return Domain Modifier and Type Method Description @Nullable Domain<T>
DataType. getDomain()
Get the defining DOMAIN type orNULL
if there is no such type.@Nullable Domain<?>
Schema. getDomain(String name)
Get a domain by its name (case-sensitive) in this schema, ornull
if no such domain exists.@Nullable Domain<?>
Schema. getDomain(Name name)
Get a domain by its qualified or unqualified name in this schema, ornull
if no such domain exists.Methods in org.jooq that return types with arguments of type Domain Modifier and Type Method Description @NotNull Stream<Domain<?>>
Schema. domainStream()
Stream all domains contained in this schema.@NotNull List<Domain<?>>
Meta. getDomains()
Get all domain objects from the underlying meta data source.@NotNull List<Domain<?>>
Meta. getDomains(String name)
Get all domain objects by name from the underlying meta data source.@NotNull List<Domain<?>>
Meta. getDomains(Name name)
Get all domain objects by name from the underlying meta data source.@NotNull List<Domain<?>>
Schema. getDomains()
List all domains contained in this schema.Methods in org.jooq with parameters of type Domain Modifier and Type Method Description <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
AlterDomainStep. renameTo(Domain<?> renameTo)
Add theRENAME TO
clause to theALTER DOMAIN
statement.Method parameters in org.jooq with type arguments of type Domain Modifier and Type Method Description @NotNull Meta
Meta. filterDomains(Meta.Predicate<? super Domain<?>> filter)
Create a wrapperMeta
instance filtering out some domains. -
Uses of Domain in org.jooq.impl
Methods in org.jooq.impl that return Domain Modifier and Type Method Description static <T> @NotNull Domain<T>
Internal. createDomain(Schema schema, Name name, DataType<T> type, Check<?>... checks)
Factory method for domain specifications.static @NotNull Domain<?>
DSL. domain(String name)
Create aDOMAIN
reference.static @NotNull Domain<?>
DSL. domain(Name name)
Create aDOMAIN
reference.Domain<?>
LazySchema. getDomain(String name)
Domain<?>
LazySchema. getDomain(Name name)
Domain<?>
SchemaImpl. getDomain(String name)
Domain<?>
SchemaImpl. getDomain(Name name)
Methods in org.jooq.impl that return types with arguments of type Domain Modifier and Type Method Description Stream<Domain<?>>
LazySchema. domainStream()
Stream<Domain<?>>
SchemaImpl. domainStream()
List<Domain<?>>
LazySchema. getDomains()
List<Domain<?>>
SchemaImpl. getDomains()
List all domains contained in this schema.Methods in org.jooq.impl with parameters of type Domain Modifier and Type Method Description <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.CreateDomainAsStep
DefaultDSLContext. createDomain(Domain<?> domain)
static CreateDomainAsStep
DSL. createDomain(Domain<?> domain)
TheCREATE DOMAIN
statement.CreateDomainAsStep
DefaultDSLContext. createDomainIfNotExists(Domain<?> domain)
static CreateDomainAsStep
DSL. createDomainIfNotExists(Domain<?> domain)
TheCREATE DOMAIN IF NOT EXISTS
statement.DropDomainCascadeStep
DefaultDSLContext. dropDomain(Domain<?> domain)
static DropDomainCascadeStep
DSL. dropDomain(Domain<?> domain)
TheDROP DOMAIN
statement.DropDomainCascadeStep
DefaultDSLContext. dropDomainIfExists(Domain<?> domain)
static DropDomainCascadeStep
DSL. dropDomainIfExists(Domain<?> domain)
TheDROP DOMAIN IF EXISTS
statement.
-