Uses of Interface
org.jooq.WindowBeforeOverStep
-
Packages that use WindowBeforeOverStep Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API. -
-
Uses of WindowBeforeOverStep in org.jooq
Subinterfaces of WindowBeforeOverStep in org.jooq Modifier and Type Interface Description interfaceAggregateFilterStep<T>The step in the specification of aggregate functions where the SQL:2003 standardFILTER clausecan be added.interfaceAggregateFunction<T>An aggregate function.interfaceArrayAggOrderByStep<T>The SQL standardARRAY_AGG()function.interfaceGroupConcatOrderByStepMySQL'sGROUP_CONCATfunction.interfaceGroupConcatSeparatorStepMySQL'sGROUP_CONCATfunction.interfaceJSONArrayAggNullStep<T>A step in the construction ofDSL.jsonArrayAgg(Field)orDSL.jsonbArrayAgg(Field)functions where theNULLclause can be defined.interfaceJSONArrayAggOrderByStep<J>A step in the construction ofDSL.jsonArrayAgg(Field)orDSL.jsonbArrayAgg(Field)functions where theORDER BYclause can be defined.interfaceJSONObjectAggNullStep<T>A step in the construction ofDSL.jsonObjectAgg(JSONEntry)orDSL.jsonbObjectAgg(JSONEntry)functions where theNULLclause can be defined.interfaceXMLAggOrderByStep<T>The SQL standardARRAY_AGG()function.Methods in org.jooq that return WindowBeforeOverStep Modifier and Type Method Description @NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(Boolean field)Deprecated.- 3.8.0 - [#4763] - UseAggregateFilterStep.filterWhere(Condition)(typically withDSL.trueCondition(),DSL.falseCondition(), orDSL.noCondition()as the parameter) orAggregateFilterStep.filterWhere(Field)instead.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(String sql)Add aFILTER clauseto the aggregate function.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(String sql, Object... bindings)Add aFILTER clauseto the aggregate function.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(String sql, QueryPart... parts)Add aFILTER clauseto the aggregate function.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(Collection<? extends Condition> conditions)Add aFILTER clauseto the aggregate function, connecting conditions with each other withOperator.AND.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(Condition condition)Add aFILTER clauseto the aggregate function, connecting conditions with each other withOperator.AND.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(Condition... conditions)Add aFILTER clauseto the aggregate function, connecting conditions with each other withOperator.AND.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(Field<Boolean> field)Add aFILTER clauseto the aggregate function.@NotNull WindowBeforeOverStep<T>AggregateFilterStep. filterWhere(SQL sql)Add aFILTER clauseto the aggregate function.
-