Uses of Class
com.feedzai.commons.sql.abstraction.dml.Name
-
Packages that use Name 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 Name in com.feedzai.commons.sql.abstraction.dml
Subclasses of Name in com.feedzai.commons.sql.abstraction.dml Modifier and Type Class Description classAllRepresents the * or environment.* operator.Methods in com.feedzai.commons.sql.abstraction.dml that return Name Modifier and Type Method Description NameName. isNotNull()Appends "IS NOT NULL" to this expression.NameName. isNull()Appends "IS NULL" to this expression.Methods in com.feedzai.commons.sql.abstraction.dml that return types with arguments of type Name Modifier and Type Method Description List<org.apache.commons.lang3.tuple.ImmutablePair<Name,Expression>>With. getClauses()Gets the clauses. -
Uses of Name in com.feedzai.commons.sql.abstraction.dml.dialect
Methods in com.feedzai.commons.sql.abstraction.dml.dialect that return Name Modifier and Type Method Description static NameSqlBuilder. column(String name)A column.static NameSqlBuilder. column(String tableName, String name)A column from a table.static NameSqlBuilder. table(String name)A table.Methods in com.feedzai.commons.sql.abstraction.dml.dialect with parameters of type Name Modifier and Type Method Description static AlterColumnSqlBuilder. alterColumn(Expression table, Name column, DbColumnType dbColumnType, DbColumnConstraint... constraints)Alter column operator. -
Uses of Name in com.feedzai.commons.sql.abstraction.engine
Methods in com.feedzai.commons.sql.abstraction.engine with parameters of type Name Modifier and Type Method Description StringAbstractTranslator. translate(Name n)TranslatesName.
-