| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| 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>> |
FactoryOperations.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>> |
FactoryProxy.newRecord(UDT<R> type)
Deprecated.
|
<R extends UDTRecord<R>> |
Factory.newRecord(UDT<R> type)
Create a new
UDTRecord. |
| Constructor and Description |
|---|
UDTRecordImpl(UDT<R> udt) |
Copyright © 2013. All Rights Reserved.