Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
<V> CaseValueStep<V> |
Case.value(Field<V> value)
This construct can be used to create expressions of the type
CASE value WHEN 1 THEN 'one'
WHEN 2 THEN 'two'
ELSE 'three'
END
|
<V> CaseValueStep<V> |
Case.value(V value)
This construct can be used to create expressions of the type
CASE value WHEN 1 THEN 'one'
WHEN 2 THEN 'two'
ELSE 'three'
END
|
Modifier and Type | Method and Description |
---|---|
static <V> CaseValueStep<V> |
DSL.choose(Field<V> value)
Initialise a
Case statement. |
static <V> CaseValueStep<V> |
DSL.choose(V value)
Initialise a
Case statement. |
Copyright © 2016. All Rights Reserved.