- Type Parameters:
 V- The type of values being compared in this case statement
public interface CaseValueStep<V>
An intermediary step in creating a case statement of the type 
 CASE x WHEN 1 THEN 'one'
        WHEN 2 THEN 'two'
        ELSE        'three'
 END
 - Author:
 - Lukas Eder
 - See Also:
 
- 
Method Summary
Modifier and TypeMethodDescription<T> @NotNull CaseWhenStep<V, T> CreateWHEN … THENexpressions from aMap.<T> @NotNull CaseWhenStep<V, T> CreateWHEN … THENexpressions from aMap.<T> @NotNull CaseWhenStep<V, T> Compare a value to the already constructed case statement, return result if values are equal.<T> @NotNull CaseWhenStep<V, T> Compare a value to the already constructed case statement, return result if values are equal.<T> @NotNull CaseWhenStep<V, T> Compare a value to the already constructed case statement, return result if values are equal.<T> @NotNull CaseWhenStep<V, T> Compare a value to the already constructed case statement, return result if values are equal.<T> @NotNull CaseWhenStep<V, T> Compare a value to the already constructed case statement, return result if values are equal.<T> @NotNull CaseWhenStep<V, T> Compare a value to the already constructed case statement, return result if values are equal. 
- 
Method Details
- 
when
Compare a value to the already constructed case statement, return result if values are equal.- Type Parameters:
 T- The generic result field type parameter- Parameters:
 compareValue- The value to compare with the already constructed case statementresult- The result value if values are equal- Returns:
 - An intermediary step for case statement construction
 
 - 
when
Compare a value to the already constructed case statement, return result if values are equal.- Type Parameters:
 T- The generic result field type parameter- Parameters:
 compareValue- The value to compare with the already constructed case statementresult- The result value if values are equal- Returns:
 - An intermediary step for case statement construction
 
 - 
when
@NotNull @Support <T> @NotNull CaseWhenStep<V,T> when(V compareValue, Select<? extends Record1<T>> result) Compare a value to the already constructed case statement, return result if values are equal.- Type Parameters:
 T- The generic result field type parameter- Parameters:
 compareValue- The value to compare with the already constructed case statementresult- The result value if values are equal- Returns:
 - An intermediary step for case statement construction
 
 - 
when
Compare a value to the already constructed case statement, return result if values are equal.- Type Parameters:
 T- The generic result field type parameter- Parameters:
 compareValue- The value to compare with the already constructed case statementresult- The result value if values are equal- Returns:
 - An intermediary step for case statement construction
 
 - 
when
Compare a value to the already constructed case statement, return result if values are equal.- Type Parameters:
 T- The generic result field type parameter- Parameters:
 compareValue- The value to compare with the already constructed case statementresult- The result value if values are equal- Returns:
 - An intermediary step for case statement construction
 
 - 
when
@NotNull @Support <T> @NotNull CaseWhenStep<V,T> when(Field<V> compareValue, Select<? extends Record1<T>> result) Compare a value to the already constructed case statement, return result if values are equal.- Type Parameters:
 T- The generic result field type parameter- Parameters:
 compareValue- The value to compare with the already constructed case statementresult- The result value if values are equal- Returns:
 - An intermediary step for case statement construction
 
 - 
mapValues
CreateWHEN … THENexpressions from aMap.This will iterate over the map's entries to create individual
WHEN … THENexpressions for each map entry. - 
mapFields
@NotNull @Support <T> @NotNull CaseWhenStep<V,T> mapFields(Map<? extends Field<V>, ? extends Field<T>> fields) CreateWHEN … THENexpressions from aMap.This will iterate over the map's entries to create individual
WHEN … THENexpressions for each map entry. 
 -