Uses of Interface
org.jooq.Replacer
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Replacer in org.jooq
Modifier and TypeMethodDescriptionstatic final @NotNull Replacer
Replacers.decomposing()
Decomposes compound queries into their component queries.static final @NotNull Replacer
Replacers.listening
(Replacer replacer, BiConsumer<? super QueryPart, ? super QueryPart> replacement) Wraps anotherReplacer
, listening to all of the replacement events that it produces.static Replacer
Convenience method to create aReplacer
with areplacer()
.static Replacer
Replacer.of
(Predicate<? super QueryPart> recurse, Function<? super QueryPart, ? extends QueryPart> replacer) Modifier and TypeMethodDescription@NotNull QueryPart
Traverse aQueryPart
hierarchy and recursively replace its elements by alternatives.static final @NotNull Replacer
Replacers.listening
(Replacer replacer, BiConsumer<? super QueryPart, ? super QueryPart> replacement) Wraps anotherReplacer
, listening to all of the replacement events that it produces. -
Uses of Replacer in org.jooq.impl
Modifier and TypeMethodDescriptionstatic final Replacer
Internal.decomposing()
The implementation ofReplacers.decomposing()
.