Uses of Interface
org.jooq.UDT
-
Packages that use UDT 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.util.oracle Theorg.jooq.util.ase
package contains classes related to theSQLDialect.ORACLE
dialect. -
-
Uses of UDT in org.jooq
Methods in org.jooq that return UDT Modifier and Type Method Description UDT<?>
Schema. getUDT(String name)
Get a UDT by its name (case-sensitive) in this schema, ornull
if no such UDT exists.UDT<R>
UDTField. getUDT()
UDT<R>
UDTRecord. getUDT()
The UDT from which this record was readMethods in org.jooq that return types with arguments of type UDT Modifier and Type Method Description List<UDT<?>>
Schema. getUDTs()
List all UDTs contained in this schema.Stream<UDT<?>>
Schema. udtStream()
Stream all UDTs contained in this schema.Methods in org.jooq with parameters of type UDT Modifier and Type Method Description <R extends UDTRecord<R>>
RDSLContext. newRecord(UDT<R> type)
Create a newUDTRecord
. -
Uses of UDT in org.jooq.impl
Classes in org.jooq.impl that implement UDT Modifier and Type Class Description class
UDTImpl<R extends UDTRecord<R>>
A common base type for UDT'sMethods in org.jooq.impl that return UDT Modifier and Type Method Description UDT<?>
SchemaImpl. getUDT(String udtName)
UDT<R>
UDTRecordImpl. getUDT()
Methods in org.jooq.impl that return types with arguments of type UDT Modifier and Type Method Description List<UDT<?>>
SchemaImpl. getUDTs()
List all UDTs contained in this schema.Stream<UDT<?>>
SchemaImpl. udtStream()
Methods in org.jooq.impl with parameters of type UDT Modifier and Type Method Description protected static <R extends UDTRecord<R>,T>
UDTField<R,T>UDTImpl. createField(String name, DataType<T> type, UDT<R> udt)
Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT)
instead.protected static <R extends UDTRecord<R>,T>
UDTField<R,T>UDTImpl. createField(String name, DataType<T> type, UDT<R> udt, String comment)
Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT, String)
instead.protected static <R extends UDTRecord<R>,T,U>
UDTField<R,U>UDTImpl. createField(String name, DataType<T> type, UDT<R> udt, String comment, Binding<T,U> binding)
Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT, String, Binding)
instead.protected static <R extends UDTRecord<R>,T,U>
UDTField<R,U>UDTImpl. createField(String name, DataType<T> type, UDT<R> udt, String comment, Converter<T,U> converter)
Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT, String, Converter)
instead.protected static <R extends UDTRecord<R>,T,X,U>
UDTField<R,U>UDTImpl. createField(String name, DataType<T> type, UDT<R> udt, String comment, Converter<X,U> converter, Binding<T,X> binding)
Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT, String, Converter, Binding)
instead.protected static <R extends UDTRecord<R>,T>
UDTField<R,T>UDTImpl. createField(Name name, DataType<T> type, UDT<R> udt)
Subclasses may call this method to createUDTField
objects that are linked to this table.protected static <R extends UDTRecord<R>,T>
UDTField<R,T>UDTImpl. createField(Name name, DataType<T> type, UDT<R> udt, String comment)
Subclasses may call this method to createUDTField
objects that are linked to this table.protected static <R extends UDTRecord<R>,T,U>
UDTField<R,U>UDTImpl. createField(Name name, DataType<T> type, UDT<R> udt, String comment, Binding<T,U> binding)
Subclasses may call this method to createUDTField
objects that are linked to this table.protected static <R extends UDTRecord<R>,T,U>
UDTField<R,U>UDTImpl. createField(Name name, DataType<T> type, UDT<R> udt, String comment, Converter<T,U> converter)
Subclasses may call this method to createUDTField
objects that are linked to this table.protected static <R extends UDTRecord<R>,T,X,U>
UDTField<R,U>UDTImpl. createField(Name name, DataType<T> type, UDT<R> udt, String comment, Converter<X,U> converter, Binding<T,X> binding)
Subclasses may call this method to createUDTField
objects that are linked to this table.static <R extends UDTRecord<R>>
Queue<R>Internal. createQueue(String name, Schema schema, UDT<R> type)
<R extends UDTRecord<R>>
RDefaultDSLContext. newRecord(UDT<R> type)
Constructors in org.jooq.impl with parameters of type UDT Constructor Description UDTRecordImpl(UDT<R> udt)
-
Uses of UDT in org.jooq.util.oracle
Methods in org.jooq.util.oracle that return UDT Modifier and Type Method Description UDT<R>
Queue. type()
The payload type.UDT<R>
QueueImpl. type()
Constructors in org.jooq.util.oracle with parameters of type UDT Constructor Description QueueImpl(String name, Schema schema, UDT<R> type)
-