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 orNULLif there is no such type.@Nullable Domain<?>Schema. getDomain(String name)Get a domain by its name (case-sensitive) in this schema, ornullif no such domain exists.@Nullable Domain<?>Schema. getDomain(Name name)Get a domain by its qualified or unqualified name in this schema, ornullif 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 DOMAINstatement.<T> @NotNull AlterDomainStep<T>DSLContext. alterDomainIfExists(Domain<T> domain)TheALTER DOMAIN IF EXISTSstatement.@NotNull CreateDomainAsStepDSLContext. createDomain(Domain<?> domain)TheCREATE DOMAINstatement.@NotNull CreateDomainAsStepDSLContext. createDomainIfNotExists(Domain<?> domain)TheCREATE DOMAIN IF NOT EXISTSstatement.@NotNull DropDomainCascadeStepDSLContext. dropDomain(Domain<?> domain)TheDROP DOMAINstatement.@NotNull DropDomainCascadeStepDSLContext. dropDomainIfExists(Domain<?> domain)TheDROP DOMAIN IF EXISTSstatement.@NotNull AlterDomainFinalStepAlterDomainStep. renameTo(Domain<?> renameTo)Add theRENAME TOclause to theALTER DOMAINstatement.Method parameters in org.jooq with type arguments of type Domain Modifier and Type Method Description @NotNull MetaMeta. filterDomains(Meta.Predicate<? super Domain<?>> filter)Create a wrapperMetainstance 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 aDOMAINreference.static @NotNull Domain<?>DSL. domain(Name name)Create aDOMAINreference.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 DOMAINstatement.<T> AlterDomainStep<T>DefaultDSLContext. alterDomainIfExists(Domain<T> domain)static <T> AlterDomainStep<T>DSL. alterDomainIfExists(Domain<T> domain)TheALTER DOMAIN IF EXISTSstatement.CreateDomainAsStepDefaultDSLContext. createDomain(Domain<?> domain)static CreateDomainAsStepDSL. createDomain(Domain<?> domain)TheCREATE DOMAINstatement.CreateDomainAsStepDefaultDSLContext. createDomainIfNotExists(Domain<?> domain)static CreateDomainAsStepDSL. createDomainIfNotExists(Domain<?> domain)TheCREATE DOMAIN IF NOT EXISTSstatement.DropDomainCascadeStepDefaultDSLContext. dropDomain(Domain<?> domain)static DropDomainCascadeStepDSL. dropDomain(Domain<?> domain)TheDROP DOMAINstatement.DropDomainCascadeStepDefaultDSLContext. dropDomainIfExists(Domain<?> domain)static DropDomainCascadeStepDSL. dropDomainIfExists(Domain<?> domain)TheDROP DOMAIN IF EXISTSstatement.
-