| 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 | Interface and Description |
|---|---|
interface |
UDT<R extends UDTRecord<R>>
UDT definition
|
interface |
UDTField<R extends UDTRecord<R>,T>
A field contained in a UDT
|
interface |
UDTRecord<R extends UDTRecord<R>>
An object holding data of a UDT
|
| 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.
|
class |
UDTRecordImpl<R extends UDTRecord<R>>
A record implementation for a record originating from a single UDT
This type is for JOOQ INTERNAL USE only.
|
| Modifier and Type | Class and Description |
|---|---|
class |
UDTRecordImpl<R extends UDTRecord<R>>
A record implementation for a record originating from a single UDT
This type is for JOOQ INTERNAL USE only.
|
| 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. |
Copyright © 2013. All Rights Reserved.