Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(SQL sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(String sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.and(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using
the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.andNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using
the
Operator.AND operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(SQL sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(String sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.or(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orExists(Select<?> select)
Combine the currently assembled conditions with an EXISTS clause using
the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator and proceed to the next step. |
InsertOnConflictConditionStep<R> |
InsertOnConflictConditionStep.orNotExists(Select<?> select)
Combine the currently assembled conditions with a NOT EXISTS clause using
the
Operator.OR operator and proceed to the next step. |
Copyright © 2019. All rights reserved.