Uses of Interface
org.jooq.VisitListener
-
Packages that use VisitListener Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes.org.jooq.tools.jdbc Theorg.jooq.tools.jdbc
package contains compatibility classes to bridge between JDBC 4.0 and JDBC 4.1. -
-
Uses of VisitListener in org.jooq
Methods in org.jooq that return VisitListener Modifier and Type Method Description VisitListener
VisitListenerProvider. provide()
Provide aVisitListener
instance.Methods in org.jooq with parameters of type VisitListener Modifier and Type Method Description Configuration
Configuration. derive(VisitListener... newVisitListeners)
Create a derived configuration from this one, with new visit listeners.Configuration
Configuration. set(VisitListener... newVisitListeners)
Change this configuration to hold a new visit listeners. -
Uses of VisitListener in org.jooq.impl
Classes in org.jooq.impl that implement VisitListener Modifier and Type Class Description class
DefaultVisitListener
A publicly available default implementation ofVisitListener
.Methods in org.jooq.impl that return VisitListener Modifier and Type Method Description VisitListener
DefaultVisitListenerProvider. provide()
Methods in org.jooq.impl with parameters of type VisitListener Modifier and Type Method Description Configuration
DefaultConfiguration. derive(VisitListener... newVisitListeners)
static VisitListenerProvider[]
DefaultVisitListenerProvider. providers(VisitListener... listeners)
Convenience method to construct an array ofDefaultVisitListenerProvider
from an array ofVisitListener
instances.Configuration
DefaultConfiguration. set(VisitListener... newVisitListeners)
void
DefaultConfiguration. setVisitListener(VisitListener... newVisitListeners)
Constructors in org.jooq.impl with parameters of type VisitListener Constructor Description DefaultVisitListenerProvider(VisitListener listener)
Create a new provider instance from an argument listener. -
Uses of VisitListener in org.jooq.tools.jdbc
Methods in org.jooq.tools.jdbc with parameters of type VisitListener Modifier and Type Method Description Configuration
MockConfiguration. derive(VisitListener... newVisitListeners)
Configuration
MockConfiguration. set(VisitListener... newVisitListeners)
-