Uses of Interface
org.jooq.Row
-
Packages that use Row 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 Row in org.jooq
Subinterfaces of Row in org.jooq Modifier and Type Interface Description interface
Row1<T1>
A row value expression.interface
Row10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
A row value expression.interface
Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
A row value expression.interface
Row12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
A row value expression.interface
Row13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
A row value expression.interface
Row14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
A row value expression.interface
Row15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
A row value expression.interface
Row16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
A row value expression.interface
Row17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
A row value expression.interface
Row18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
A row value expression.interface
Row19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
A row value expression.interface
Row2<T1,T2>
A row value expression.interface
Row20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
A row value expression.interface
Row21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
A row value expression.interface
Row22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
A row value expression.interface
Row3<T1,T2,T3>
A row value expression.interface
Row4<T1,T2,T3,T4>
A row value expression.interface
Row5<T1,T2,T3,T4,T5>
A row value expression.interface
Row6<T1,T2,T3,T4,T5,T6>
A row value expression.interface
Row7<T1,T2,T3,T4,T5,T6,T7>
A row value expression.interface
Row8<T1,T2,T3,T4,T5,T6,T7,T8>
A row value expression.interface
Row9<T1,T2,T3,T4,T5,T6,T7,T8,T9>
A row value expression.interface
RowN
A row value expression.Methods in org.jooq that return Row Modifier and Type Method Description Row
Cursor. fieldsRow()
Get this cursor's fields as aRow
.Row
Record. fieldsRow()
Get this record's fields as aRow
.Row
Result. fieldsRow()
Get this result's fields as aRow
.Row
TableLike. fieldsRow()
Get this table's fields as aRow
, if this table knows its field references.Row
UDT. fieldsRow()
Get this UDT's fields as aRow
.Row
Parser. parseRow(String sql)
Parse a SQL string to a row.Row
Parser. parseRow(String sql, Object... bindings)
Parse a SQL string with bind variables to a row.Row
Record. valuesRow()
Get this record's values as aRow
. -
Uses of Row in org.jooq.impl
Methods in org.jooq.impl that return Row Modifier and Type Method Description Row
EmbeddableRecordImpl. fieldsRow()
Row
TableImpl. fieldsRow()
Row
TableRecordImpl. fieldsRow()
Row
UDTImpl. fieldsRow()
Row
UDTRecordImpl. fieldsRow()
Row
EmbeddableRecordImpl. valuesRow()
Row
TableRecordImpl. valuesRow()
Row
UDTRecordImpl. valuesRow()
-