| Package | Description |
|---|---|
| com.feedzai.commons.sql.abstraction.dml |
Contains classes to build DML statements.
|
| com.feedzai.commons.sql.abstraction.dml.dialect |
Contains an SQL builder.
|
| com.feedzai.commons.sql.abstraction.engine |
Contains the database engine core.
|
| Modifier and Type | Method and Description |
|---|---|
static Case |
Case.caseWhen()
Returns a new empty case.
|
static Case |
Case.caseWhen(Expression condition,
Expression trueAction)
Returns a new "case when" that does the trueAction considering the condition.
|
Case |
Case.otherwise(Expression falseAction)
Sets the false action.
|
Case |
Case.when(Expression condition,
Expression action)
Adds a new when clause to this case.
|
| Modifier and Type | Method and Description |
|---|---|
static Case |
SqlBuilder.caseWhen()
Returns a new "case when".
|
static Case |
SqlBuilder.caseWhen(Expression condition,
Expression trueAction)
Creates a case expression.
|
| Modifier and Type | Method and Description |
|---|---|
String |
AbstractTranslator.translate(Case aCase)
Translates Case.
|
Copyright © 2021 Feedzai. All rights reserved.