- java.lang.Object
-
- org.jooq.impl.LazySchema
-
- All Implemented Interfaces:
Serializable
,Named
,QueryPart
,QueryPartInternal
,Schema
@Internal public final class LazySchema extends Object implements Schema
A schema that references a lazy initialisableSchema
singleton, for use in generated code.- Author:
- Lukas Eder
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LazySchema(Name name, Comment comment, LazySupplier<Schema> supplier)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
accept(Context<?> ctx)
void
bind(BindContext context)
Deprecated.- 3.4.0 - [#2694] - UseQueryPartInternal.accept(Context)
instead.Clause[]
clauses(Context<?> ctx)
Deprecated.- 3.11.0 - [#8179] - This functionality will be removed in the future.protected DSLContext
create()
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()
andConfiguration.dsl()
instead.protected DSLContext
create(Configuration configuration)
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()
andConfiguration.dsl()
instead.protected DSLContext
create(Context<?> ctx)
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()
andConfiguration.dsl()
instead.boolean
declaresCTE()
Subclasses may override thisboolean
declaresFields()
Subclasses may override thisboolean
declaresTables()
Subclasses may override thisboolean
declaresWindows()
Subclasses may override thisStream<Domain<?>>
domainStream()
Stream all domains contained in this schema.boolean
equals(Object that)
Check whether thisQueryPart
can be considered equal to anotherQueryPart
.boolean
generatesCast()
Subclasses may override thisCatalog
getCatalog()
The catalog of this schema.String
getComment()
The comment on this object.Comment
getCommentPart()
The comment on this object as aQueryPart
.Domain<?>
getDomain(String name)
Get a domain by its name (case-sensitive) in this schema, ornull
if no such domain exists.Domain<?>
getDomain(Name name)
Get a domain by its qualified or unqualified name in this schema, ornull
if no such domain exists.List<Domain<?>>
getDomains()
List all domains contained in this schema.String
getName()
The unqualified name of this object.Name
getQualifiedName()
The qualified name of this object.Sequence<?>
getSequence(String name)
Get a sequence by its name (case-sensitive) in this schema, ornull
if no such sequence exists.Sequence<?>
getSequence(Name name)
Get a sequence by its qualified or unqualified name in this schema, ornull
if no such sequence exists.List<Sequence<?>>
getSequences()
List all sequences contained in this schema.Table<?>
getTable(String name)
Get a table by its name (case-sensitive) in this schema, ornull
if no such table exists.Table<?>
getTable(Name name)
Get a table by its qualified or unqualified name in this schema, ornull
if no such table exists.List<Table<?>>
getTables()
List all tables contained in this schema.UDT<?>
getUDT(String name)
Get a UDT by its name (case-sensitive) in this schema, ornull
if no such UDT exists.UDT<?>
getUDT(Name name)
Get a UDT by its qualified or unqualified name in this schema, ornull
if no such UDT exists.List<UDT<?>>
getUDTs()
List all UDTs contained in this schema.Name
getUnqualifiedName()
The unqualified name of this object.int
hashCode()
Generate a hash code from thisQueryPart
.boolean
rendersContent(Context<?> ctx)
Subclasses may override thisStream<Sequence<?>>
sequenceStream()
Stream all sequences contained in this schema.Stream<Table<?>>
tableStream()
Stream all tables contained in this schema.void
toSQL(RenderContext context)
Deprecated.- 3.4.0 - [#2694] - UseQueryPartInternal.accept(Context)
instead.String
toString()
Render a SQL string representation of thisQueryPart
.protected DataAccessException
translate(String sql, SQLException e)
Internal convenience methodStream<UDT<?>>
udtStream()
Stream all UDTs contained in this schema.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.jooq.Named
getComment, getCommentPart, getName, getQualifiedName, getUnqualifiedName
-
-
-
-
Constructor Detail
-
LazySchema
public LazySchema(Name name, Comment comment, LazySupplier<Schema> supplier)
-
-
Method Detail
-
accept
public final void accept(Context<?> ctx)
Description copied from interface:QueryPartInternal
ThisQueryPart
canaccept
aContext
object in order to render a SQL string or to bind its variables.- Specified by:
accept
in interfaceQueryPartInternal
-
getCatalog
public final Catalog getCatalog()
Description copied from interface:Schema
The catalog of this schema.- Specified by:
getCatalog
in interfaceSchema
-
tableStream
public final Stream<Table<?>> tableStream()
Description copied from interface:Schema
Stream all tables contained in this schema.- Specified by:
tableStream
in interfaceSchema
-
getTables
public final List<Table<?>> getTables()
Description copied from interface:Schema
List all tables contained in this schema.
-
getTable
public final Table<?> getTable(String name)
Description copied from interface:Schema
Get a table by its name (case-sensitive) in this schema, ornull
if no such table exists.
-
getTable
public final Table<?> getTable(Name name)
Description copied from interface:Schema
Get a table by its qualified or unqualified name in this schema, ornull
if no such table exists.
-
udtStream
public final Stream<UDT<?>> udtStream()
Description copied from interface:Schema
Stream all UDTs contained in this schema.
-
getUDTs
public final List<UDT<?>> getUDTs()
Description copied from interface:Schema
List all UDTs contained in this schema.
-
getUDT
public final UDT<?> getUDT(String name)
Description copied from interface:Schema
Get a UDT by its name (case-sensitive) in this schema, ornull
if no such UDT exists.
-
getUDT
public final UDT<?> getUDT(Name name)
Description copied from interface:Schema
Get a UDT by its qualified or unqualified name in this schema, ornull
if no such UDT exists.
-
domainStream
public final Stream<Domain<?>> domainStream()
Description copied from interface:Schema
Stream all domains contained in this schema.- Specified by:
domainStream
in interfaceSchema
-
getDomains
public final List<Domain<?>> getDomains()
Description copied from interface:Schema
List all domains contained in this schema.- Specified by:
getDomains
in interfaceSchema
-
getDomain
public final Domain<?> getDomain(String name)
Description copied from interface:Schema
Get a domain by its name (case-sensitive) in this schema, ornull
if no such domain exists.
-
getDomain
public final Domain<?> getDomain(Name name)
Description copied from interface:Schema
Get a domain by its qualified or unqualified name in this schema, ornull
if no such domain exists.
-
sequenceStream
public final Stream<Sequence<?>> sequenceStream()
Description copied from interface:Schema
Stream all sequences contained in this schema.- Specified by:
sequenceStream
in interfaceSchema
-
getSequences
public final List<Sequence<?>> getSequences()
Description copied from interface:Schema
List all sequences contained in this schema.- Specified by:
getSequences
in interfaceSchema
-
getSequence
public final Sequence<?> getSequence(String name)
Description copied from interface:Schema
Get a sequence by its name (case-sensitive) in this schema, ornull
if no such sequence exists.- Specified by:
getSequence
in interfaceSchema
-
getSequence
public final Sequence<?> getSequence(Name name)
Description copied from interface:Schema
Get a sequence by its qualified or unqualified name in this schema, ornull
if no such sequence exists.- Specified by:
getSequence
in interfaceSchema
-
getName
public final String getName()
Description copied from interface:Named
The unqualified name of this object.
-
getQualifiedName
public Name getQualifiedName()
Description copied from interface:Named
The qualified name of this object.- Specified by:
getQualifiedName
in interfaceNamed
-
getUnqualifiedName
public final Name getUnqualifiedName()
Description copied from interface:Named
The unqualified name of this object.- Specified by:
getUnqualifiedName
in interfaceNamed
-
getComment
public final String getComment()
Description copied from interface:Named
The comment on this object.This is the same as calling
Named.getCommentPart()
and thenComment.getComment()
.- Specified by:
getComment
in interfaceNamed
-
getCommentPart
public final Comment getCommentPart()
Description copied from interface:Named
The comment on this object as aQueryPart
.- Specified by:
getCommentPart
in interfaceNamed
-
hashCode
public int hashCode()
Description copied from interface:QueryPart
Generate a hash code from thisQueryPart
.In general,
QueryPart
hash codes are the same as the hash codes generated fromQueryPart.toString()
. This guarantees consistent behaviour withQueryPart.equals(Object)
Some
QueryPart
implementations may choose to override this behaviour for improved performance, asQueryPart.toString()
is an expensive operation, if called many times.
-
equals
public boolean equals(Object that)
Description copied from interface:QueryPart
Check whether thisQueryPart
can be considered equal to anotherQueryPart
.In general,
QueryPart
equality is defined in terms ofQueryPart.toString()
equality. In other words, two query parts are considered equal if their rendered SQL (with inlined bind variables) is equal. This means that the two query parts do not necessarily have to be of the same type.Some
QueryPart
implementations may choose to override this behaviour for improved performance, asQueryPart.toString()
is an expensive operation, if called many times.
-
toSQL
@Deprecated public final void toSQL(RenderContext context)
Deprecated.- 3.4.0 - [#2694] - UseQueryPartInternal.accept(Context)
instead.Description copied from interface:QueryPartInternal
Render thisQueryPart
to a SQL string contained incontext.sql()
. Thecontext
will contain additional information about how to render thisQueryPart
, e.g. whether thisQueryPart
should be rendered as a declaration or reference, whether thisQueryPart
's contained bind variables should be inlined or replaced by'?'
, etc.- Specified by:
toSQL
in interfaceQueryPartInternal
-
bind
@Deprecated public final void bind(BindContext context) throws DataAccessException
Deprecated.- 3.4.0 - [#2694] - UseQueryPartInternal.accept(Context)
instead.Description copied from interface:QueryPartInternal
Bind all parameters of thisQueryPart
to a PreparedStatementThis method is for JOOQ INTERNAL USE only. Do not reference directly
- Specified by:
bind
in interfaceQueryPartInternal
- Parameters:
context
- The context holding the next bind index and other information for variable binding- Throws:
DataAccessException
- If something went wrong while binding a variable
-
clauses
@Deprecated public Clause[] clauses(Context<?> ctx)
Deprecated.- 3.11.0 - [#8179] - This functionality will be removed in the future.Description copied from interface:QueryPartInternal
TheClause
s that are represented by this query part.QueryPart
s can specify severalClause
s for which an event will be emittedbefore
(in forward order) andafter
(in reverse order) visiting the the query part throughContext.visit(QueryPart)
This method is for JOOQ INTERNAL USE only. Do not reference directly
- Specified by:
clauses
in interfaceQueryPartInternal
- Returns:
- The
Clause
s represented by this query part ornull
or an empty array if this query part does not represent a clause.
-
rendersContent
public boolean rendersContent(Context<?> ctx)
Subclasses may override this- Specified by:
rendersContent
in interfaceQueryPartInternal
-
declaresFields
public boolean declaresFields()
Subclasses may override this- Specified by:
declaresFields
in interfaceQueryPartInternal
-
declaresTables
public boolean declaresTables()
Subclasses may override this- Specified by:
declaresTables
in interfaceQueryPartInternal
-
declaresWindows
public boolean declaresWindows()
Subclasses may override this- Specified by:
declaresWindows
in interfaceQueryPartInternal
-
declaresCTE
public boolean declaresCTE()
Subclasses may override this- Specified by:
declaresCTE
in interfaceQueryPartInternal
-
generatesCast
public boolean generatesCast()
Subclasses may override this- Specified by:
generatesCast
in interfaceQueryPartInternal
-
toString
public String toString()
Description copied from interface:QueryPart
Render a SQL string representation of thisQueryPart
.For improved debugging, this renders a SQL string of this
QueryPart
with inlined bind variables. If thisQueryPart
isAttachable
, then the attachedConfiguration
may be used for rendering the SQL string, includingSQLDialect
andSettings
. Do note that mostQueryPart
instances are not attached to aConfiguration
, and thus there is no guarantee that the SQL string will make sense in the context of a specific database.
-
create
@Deprecated protected final DSLContext create()
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()
andConfiguration.dsl()
instead.Internal convenience method
-
create
@Deprecated protected final DSLContext create(Configuration configuration)
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()
andConfiguration.dsl()
instead.Internal convenience method
-
create
@Deprecated protected final DSLContext create(Context<?> ctx)
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()
andConfiguration.dsl()
instead.Internal convenience method
-
translate
protected final DataAccessException translate(String sql, SQLException e)
Internal convenience method
-
-