<T> @NotNull CaseConditionStep<T> |
Case.when(Condition condition,
Field<T> result) |
This construct can be used to create expressions of the type
|
<T> @NotNull CaseConditionStep<T> |
Case.when(Condition condition,
Select<? extends Record1<T>> result) |
This construct can be used to create expressions of the type
|
<T> @NotNull CaseConditionStep<T> |
Case.when(Condition condition,
T result) |
This construct can be used to create expressions of the type
|
<T> @NotNull CaseConditionStep<T> |
Case.when(Field<Boolean> condition,
Field<T> result) |
This construct can be used to create expressions of the type
|
<T> @NotNull CaseConditionStep<T> |
Case.when(Field<Boolean> condition,
Select<? extends Record1<T>> result) |
This construct can be used to create expressions of the type
|
<T> @NotNull CaseConditionStep<T> |
Case.when(Field<Boolean> condition,
T result) |
This construct can be used to create expressions of the type
|
@NotNull CaseConditionStep<T> |
CaseConditionStep.when(Condition condition,
Field<T> result) |
Compare a condition to the already constructed case statement, return
result if the condition holds true
|
@NotNull CaseConditionStep<T> |
CaseConditionStep.when(Condition condition,
Select<? extends Record1<T>> result) |
Compare a condition to the already constructed case statement, return
result if the condition holds true
|
@NotNull CaseConditionStep<T> |
CaseConditionStep.when(Condition condition,
T result) |
Compare a condition to the already constructed case statement, return
result if the condition holds true
|
@NotNull CaseConditionStep<T> |
CaseConditionStep.when(Field<Boolean> condition,
Field<T> result) |
Compare a condition to the already constructed case statement, return
result if the condition holds true
|
@NotNull CaseConditionStep<T> |
CaseConditionStep.when(Field<Boolean> condition,
Select<? extends Record1<T>> result) |
Compare a condition to the already constructed case statement, return
result if the condition holds true
|
@NotNull CaseConditionStep<T> |
CaseConditionStep.when(Field<Boolean> condition,
T result) |
Compare a condition to the already constructed case statement, return
result if the condition holds true
|