Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
UDT<R> |
UDTRecord.getUDT()
The UDT from which this record was read
|
UDT<R> |
UDTField.getUDT() |
UDT<?> |
Schema.getUDT(String name)
Get a UDT by its name (case-sensitive) in this schema, or
null if no such UDT exists |
Modifier and Type | Method and Description |
---|---|
List<UDT<?>> |
Schema.getUDTs()
List all UDTs contained in this schema
|
Modifier and Type | Method and Description |
---|---|
<R extends UDTRecord<R>> |
DSLContext.newRecord(UDT<R> type)
Create a new
UDTRecord . |
Modifier and Type | Class and Description |
---|---|
class |
UDTImpl<R extends UDTRecord<R>>
A common base type for UDT's
This type is for JOOQ INTERNAL USE only.
|
Modifier and Type | Method and Description |
---|---|
UDT<R> |
UDTRecordImpl.getUDT() |
UDT<?> |
SchemaImpl.getUDT(String name) |
Modifier and Type | Method and Description |
---|---|
List<UDT<?>> |
SchemaImpl.getUDTs()
List all UDTs contained in this schema
|
Modifier and Type | Method and Description |
---|---|
protected static <R extends UDTRecord<R>,T> |
UDTImpl.createField(String name,
DataType<T> type,
UDT<R> udt)
Subclasses may call this method to create
UDTField objects that
are linked to this table. |
<R extends UDTRecord<R>> |
DefaultDSLContext.newRecord(UDT<R> type) |
Constructor and Description |
---|
UDTRecordImpl(UDT<R> udt) |
Copyright © 2014. All Rights Reserved.