Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
SelectConditionStep<R> |
SelectConditionStep.and(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.and(Field<java.lang.Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.and(java.lang.String sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.and(java.lang.String sql,
java.lang.Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.and(java.lang.String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using
the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.andNot(Field<java.lang.Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.andNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using
the
Operator.AND operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.or(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.or(Field<java.lang.Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.or(java.lang.String sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.or(java.lang.String sql,
java.lang.Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.or(java.lang.String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using
the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.orNot(Field<java.lang.Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectConditionStep.orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using
the
Operator.OR operator and proceed to the next step. |
SelectConditionStep<R> |
SelectWhereStep.where(java.util.Collection<? extends Condition> conditions)
Add a
WHERE clause to the query, connecting them with each
other with Operator.AND . |
SelectConditionStep<R> |
SelectWhereStep.where(Condition... conditions)
Add a
WHERE clause to the query, connecting them with each
other with Operator.AND . |
SelectConditionStep<R> |
SelectWhereStep.where(Field<java.lang.Boolean> field)
Add a
WHERE clause to the query. |
SelectConditionStep<R> |
SelectWhereStep.where(java.lang.String sql)
Add a
WHERE clause to the query. |
SelectConditionStep<R> |
SelectWhereStep.where(java.lang.String sql,
java.lang.Object... bindings)
Add a
WHERE clause to the query. |
SelectConditionStep<R> |
SelectWhereStep.where(java.lang.String sql,
QueryPart... parts)
Add a
WHERE clause to the query. |
SelectConditionStep<R> |
SelectWhereStep.whereExists(Select<?> select)
Add a
WHERE EXISTS clause to the query. |
SelectConditionStep<R> |
SelectWhereStep.whereNotExists(Select<?> select)
Add a
WHERE NOT EXISTS clause to the query. |
Copyright © 2015. All Rights Reserved.