Uses of Interface
org.jooq.ArrayRecord
-
Packages that use ArrayRecord Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of ArrayRecord in org.jooq
Methods in org.jooq with type parameters of type ArrayRecord Modifier and Type Method Description <A extends ArrayRecord<?>>
DataType<A>DataType. asArrayDataType(Class<A> arrayDataType)
Retrieve the data type for an Oracle-style ARRAY of this data type. -
Uses of ArrayRecord in org.jooq.impl
Classes in org.jooq.impl that implement ArrayRecord Modifier and Type Class Description class
ArrayRecordImpl<T>
A common base class for Oracle ARRAY typesMethods in org.jooq.impl with type parameters of type ArrayRecord Modifier and Type Method Description <A extends ArrayRecord<?>>
DataType<A>DefaultDataType. asArrayDataType(Class<A> arrayDataType)
static <T,A extends ArrayRecord<T>>
ArrayAggOrderByStep<A>DSL. collect(Field<T> field, Class<A> type)
Get thecollect()
aggregate function.static <T,A extends ArrayRecord<T>>
ArrayAggOrderByStep<A>DSL. collect(Field<T> field, DataType<A> type)
Get thecollect()
aggregate function.static <T,A extends ArrayRecord<T>>
ArrayAggOrderByStep<A>DSL. collectDistinct(Field<T> field, Class<A> type)
Get thecollect()
aggregate function.static <T,A extends ArrayRecord<T>>
ArrayAggOrderByStep<A>DSL. collectDistinct(Field<T> field, DataType<A> type)
Get thecollect()
aggregate function.Methods in org.jooq.impl with parameters of type ArrayRecord Modifier and Type Method Description static Table<?>
DSL. table(ArrayRecord<?> array)
A synonym forDSL.unnest(ArrayRecord)
.static Table<?>
DSL. unnest(ArrayRecord<?> array)
Create a table from an array of values.
-