Uses of Class
com.feedzai.commons.sql.abstraction.dml.Case
-
Packages that use Case 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. -
-
Uses of Case in com.feedzai.commons.sql.abstraction.dml
Methods in com.feedzai.commons.sql.abstraction.dml that return Case Modifier and Type Method Description static CaseCase. caseWhen()Returns a new empty case.static CaseCase. caseWhen(Expression condition, Expression trueAction)Returns a new "case when" that does the trueAction considering the condition.CaseCase. otherwise(Expression falseAction)Sets the false action.CaseCase. when(Expression condition, Expression action)Adds a new when clause to this case. -
Uses of Case in com.feedzai.commons.sql.abstraction.dml.dialect
Methods in com.feedzai.commons.sql.abstraction.dml.dialect that return Case Modifier and Type Method Description static CaseSqlBuilder. caseWhen()Returns a new "case when".static CaseSqlBuilder. caseWhen(Expression condition, Expression trueAction)Creates a case expression. -
Uses of Case in com.feedzai.commons.sql.abstraction.engine
Methods in com.feedzai.commons.sql.abstraction.engine with parameters of type Case Modifier and Type Method Description StringAbstractTranslator. translate(Case aCase)Translates Case.
-