Uses of Interface
org.jooq.GroupField
-
Packages that use GroupField 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 GroupField in org.jooq
Subinterfaces of GroupField in org.jooq Modifier and Type Interface Description interface
AggregateFilterStep<T>
The step in the specification of aggregate functions where the SQL:2003 standardFILTER clause
can be added.interface
AggregateFunction<T>
An aggregate function.interface
ArrayAggOrderByStep<T>
The SQL standardARRAY_AGG()
function.interface
CaseConditionStep<T>
The final step in creating a case statement of the typeinterface
CaseWhenStep<V,T>
The final step in creating a case statement of the typeinterface
Field<T>
A column expression.interface
GroupConcatOrderByStep
MySQL'sGROUP_CONCAT
function.interface
GroupConcatSeparatorStep
MySQL'sGROUP_CONCAT
function.interface
Param<T>
A named parameter and/or bind value.interface
TableField<R extends Record,T>
A field contained in a table.interface
UDTField<R extends UDTRecord<R>,T>
A field contained in a UDT.interface
Variable<T>
A local variable reference.interface
WindowBeforeOverStep<T>
This type is used for the window function DSL API.interface
WindowExcludeStep<T>
This type is used for the window function DSL API.interface
WindowFinalStep<T>
This type is used for the window function DSL API.interface
WindowOrderByStep<T>
This type is used for the window function DSL API.interface
WindowPartitionByStep<T>
This type is used for the window function DSL API.interface
WindowRowsStep<T>
This type is used for the window function DSL API.Methods in org.jooq with parameters of type GroupField Modifier and Type Method Description void
SelectQuery. addGroupBy(GroupField... fields)
Adds grouping fields.SelectHavingStep<R>
SelectGroupByStep. groupBy(GroupField... fields)
Add aGROUP BY
clause to the queryMethod parameters in org.jooq with type arguments of type GroupField Modifier and Type Method Description void
SelectQuery. addGroupBy(Collection<? extends GroupField> fields)
Adds grouping fields.SelectHavingStep<R>
SelectGroupByStep. groupBy(Collection<? extends GroupField> fields)
Add aGROUP BY
clause to the query -
Uses of GroupField in org.jooq.impl
Classes in org.jooq.impl that implement GroupField Modifier and Type Class Description class
ConvertDateTime<T>
class
CustomField<T>
A base class for customField
implementations in client code.Methods in org.jooq.impl that return GroupField Modifier and Type Method Description static GroupField
DSL. cube(Field<?>... fields)
Create a CUBE(field1, field2, .., fieldn) grouping field.static GroupField
DSL. cube(FieldOrRow... fields)
Create a CUBE(field1, field2, .., fieldn) grouping field.static GroupField
DSL. groupingSets(Collection<? extends Field<?>>... fieldSets)
Create a GROUPING SETS((field1a, field1b), (field2a), .., (fieldna, fieldnb)) grouping field.static GroupField
DSL. groupingSets(Field<?>... fields)
Create a GROUPING SETS(field1, field2, .., fieldn) grouping field where each grouping set only consists of a single field.static GroupField
DSL. groupingSets(Field<?>[]... fieldSets)
Create a GROUPING SETS((field1a, field1b), (field2a), .., (fieldna, fieldnb)) grouping field.static GroupField
DSL. rollup(Field<?>... fields)
Create a ROLLUP(field1, field2, .., fieldn) grouping field.static GroupField
DSL. rollup(FieldOrRow... fields)
Create a ROLLUP(field1, field2, .., fieldn) grouping field.
-