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 |
---|---|
Binding<?,T> |
SelectField.getBinding()
The field's underlying
Binding . |
Binding<?,T> |
Parameter.getBinding()
The parameter's underlying
Binding . |
Binding<?,T> |
Field.getBinding()
The field's underlying
Binding . |
Binding<?,T> |
DataType.getBinding()
Get the data type binding associated with this data type.
|
Modifier and Type | Method and Description |
---|---|
<U> DataType<U> |
DataType.asConvertedDataType(Binding<? super T,U> binding)
Retrieve the data type for a given binding.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractXMLasObjectBinding<T>
|
class |
BlobBinding
A binding that takes binary values but binds them as
Blob to at the
JDBC level. |
class |
ClobBinding
A binding that takes binary values but binds them as
Clob to at the
JDBC level. |
class |
DateAsTimestampBinding
A binding that implements the date-as-timestamp semantics of the jOOQ code
generator.
|
class |
DefaultBinding<T,U> |
class |
XMLasDOMBinding
|
Modifier and Type | Method and Description |
---|---|
Binding<?,T> |
DefaultDataType.getBinding() |
Modifier and Type | Method and Description |
---|---|
<U> DataType<U> |
DefaultDataType.asConvertedDataType(Binding<? super T,U> newBinding) |
protected static <R extends UDTRecord<R>,T,U> |
UDTImpl.createField(String name,
DataType<T> type,
UDT<R> udt,
String comment,
Binding<T,U> binding)
Subclasses may call this method to create
UDTField objects that
are linked to this table. |
protected static <R extends UDTRecord<R>,T,X,U> |
UDTImpl.createField(String name,
DataType<T> type,
UDT<R> udt,
String comment,
Converter<X,U> converter,
Binding<T,X> binding)
Subclasses may call this method to create
UDTField objects that
are linked to this table. |
protected static <T,U> Parameter<U> |
AbstractRoutine.createParameter(String name,
DataType<T> type,
boolean isDefaulted,
Binding<T,U> binding)
Deprecated.
- Please, re-generate your routine code.
|
protected static <T,U> Parameter<U> |
AbstractRoutine.createParameter(String name,
DataType<T> type,
boolean isDefaulted,
boolean isUnnamed,
Binding<T,U> binding)
Subclasses may call this method to create
UDTField objects that
are linked to this table. |
protected static <T,X,U> Parameter<U> |
AbstractRoutine.createParameter(String name,
DataType<T> type,
boolean isDefaulted,
boolean isUnnamed,
Converter<X,U> converter,
Binding<T,X> binding)
Subclasses may call this method to create
UDTField objects that
are linked to this table. |
protected static <T,X,U> Parameter<U> |
AbstractRoutine.createParameter(String name,
DataType<T> type,
boolean isDefaulted,
Converter<X,U> converter,
Binding<T,X> binding)
Deprecated.
- Please, re-generate your routine code.
|
Constructor and Description |
---|
AbstractRoutine(String name,
Schema schema,
DataType<X> type,
Binding<X,T> binding) |
AbstractRoutine(String name,
Schema schema,
DataType<X> type,
Converter<Y,T> converter,
Binding<X,Y> binding) |
AbstractRoutine(String name,
Schema schema,
Package pkg,
DataType<X> type,
Binding<X,T> binding) |
AbstractRoutine(String name,
Schema schema,
Package pkg,
DataType<X> type,
Converter<Y,T> converter,
Binding<X,Y> binding) |
ArrayRecordImpl(Schema schema,
String name,
DataType<X> type,
Binding<X,Y> binding)
Create an empty array record
|
ArrayRecordImpl(Schema schema,
String name,
DataType<X> type,
Configuration configuration,
Binding<X,Y> binding)
Deprecated.
- 3.4.0 - [#3126] - Use the
ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead. |
ArrayRecordImpl(Schema schema,
String name,
DataType<X> type,
Configuration configuration,
Converter<Y,T> converter,
Binding<X,Y> binding)
Deprecated.
- 3.4.0 - [#3126] - Use the
ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead. |
ArrayRecordImpl(Schema schema,
String name,
DataType<X> type,
Converter<Y,T> converter,
Binding<X,Y> binding)
Create an empty array record
|
Copyright © 2016. All Rights Reserved.