Uses of Interface
org.jooq.UDT
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
This package contains classes related to the
SQLDialect.ORACLE
dialect family.-
Uses of UDT in org.jooq
Modifier and TypeMethodDescription@Nullable UDT
<?> UDT.getSupertype()
Get the supertype of thisUDT
, ornull
if this type has no supertype.@Nullable UDT
<?> Get a UDT by its name (case-sensitive) in this schema, ornull
if no such UDT exists.@Nullable UDT
<?> Get a UDT by its qualified or unqualified name in this schema, ornull
if no such UDT exists.UDTField.getUDT()
UDTRecord.getUDT()
The UDT from which this record was readDeprecated, for removal: This API element is subject to removal in a future version.Apply mapping to a given UDTModifier and TypeMethodDescriptionUDT.getSubtypes()
Get the subtypes of thisUDT
or an empty list, if there are no known subtypes.Schema.getUDTs()
List all UDTs contained in this schema.Schema.udtStream()
Stream all UDTs contained in this schema.Modifier and TypeMethodDescriptionboolean
UDT.isAssignableFrom
(UDT<?> other) Check if this type is a supertype or the same type as anotherUDT
type.Deprecated, for removal: This API element is subject to removal in a future version.Apply mapping to a given UDT<R extends UDTRecord<R>>
RCreate a newUDTRecord
. -
Uses of UDT in org.jooq.impl
Modifier and TypeClassDescriptionclass
A common base type for UDT'sModifier and TypeMethodDescriptionUDT
<?> UDTImpl.getSupertype()
final UDT
<?> final UDT
<?> final UDT
<?> final UDT
<?> UDTPathFieldImpl.getUDT()
UDTRecordImpl.getUDT()
Modifier and TypeMethodDescriptionUDTImpl.getSubtypes()
LazySchema.getUDTs()
SchemaImpl.getUDTs()
List all UDTs contained in this schema.LazySchema.udtStream()
SchemaImpl.udtStream()
Modifier and TypeMethodDescriptionUDTImpl.createField
(String name, DataType<? extends T> type, UDT<R> udt) Deprecated.UDTImpl.createField
(String name, DataType<? extends T> type, UDT<R> udt, String comment) Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT, String)
instead.UDTImpl.createField
(String name, DataType<? extends T> type, UDT<R> udt, String comment, Binding<T, U> binding) Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT, String, Binding)
instead.UDTImpl.createField
(String name, DataType<? extends T> type, UDT<R> udt, String comment, Converter<T, U> converter) Deprecated.- 3.12.0 - [#8000] - UseUDTImpl.createField(Name, DataType, UDT, String, Converter)
instead.UDTImpl.createField
(String name, DataType<? extends 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.UDTImpl.createField
(Name name, DataType<? extends T> type, UDT<R> udt) Subclasses may call this method to createUDTField
objects that are linked to this table.UDTImpl.createField
(Name name, DataType<? extends T> type, UDT<R> udt, String comment) Subclasses may call this method to createUDTField
objects that are linked to this table.UDTImpl.createField
(Name name, DataType<? extends 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.UDTImpl.createField
(Name name, DataType<? extends 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.UDTImpl.createField
(Name name, DataType<? extends 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.Internal.createQueue
(String name, Schema schema, UDT<R> type) final boolean
UDTImpl.isAssignableFrom
(UDT<?> other) <R extends UDTRecord<R>>
RModifierConstructorDescriptionUDTPathTableFieldImpl
(Name name, DataType<T> type, RecordQualifier<R> qualifier, UDT<U> udt, Comment comment, Binding<?, T> binding) UDTRecordImpl
(UDT<R> udt) -
Uses of UDT in org.jooq.util.oracle
UDTImpl.createField(Name, DataType, UDT)
instead.