Uses of Class
com.github.tadukoo.database.mysql.syntax.conditional.Conditional
Packages that use Conditional
Package
Description
Contains syntax elements to help build SQL statements
Contains syntax elements relating to conditionals
Contains classes for creating MySQL statements
-
Uses of Conditional in com.github.tadukoo.database.mysql.syntax
Methods in com.github.tadukoo.database.mysql.syntax that return ConditionalModifier and TypeMethodDescriptionstatic ConditionalSQLSyntaxUtil.makeConditional(Collection<String> columnNames, Collection<Object> values, boolean search) Makes aConditionalusing the given parameters -
Uses of Conditional in com.github.tadukoo.database.mysql.syntax.conditional
Fields in com.github.tadukoo.database.mysql.syntax.conditional declared as ConditionalModifier and TypeFieldDescriptionprivate ConditionalConditional.ConditionalBuilder.firstCondThe firstConditionalinvolved (it may be null if aConditionalStatementis used instead)private final ConditionalConditional.firstCondThe firstConditionalinvolved (it may be null if aConditionalStatementis used instead)private ConditionalConditional.ConditionalBuilder.secondCondThe secondConditionalinvolved (it may be null if either aConditionalStatementis used instead or if there's only one condition)private final ConditionalConditional.secondCondThe secondConditionalinvolved (it may be null if either aConditionalStatementis used instead or if there's only one condition)Methods in com.github.tadukoo.database.mysql.syntax.conditional that return ConditionalModifier and TypeMethodDescriptionConditional.Build.build()Constructs a newConditionalwith the set parameters after checking for errorsConditional.ConditionalBuilder.build()Constructs a newConditionalwith the set parameters after checking for errorsConditional.getFirstCond()Conditional.getSecondCond()Methods in com.github.tadukoo.database.mysql.syntax.conditional with parameters of type ConditionalModifier and TypeMethodDescriptionConditional.ConditionalBuilder.firstCond(Conditional firstCond) Conditional.FirstCondition.firstCond(Conditional firstCond) Conditional.ConditionalBuilder.secondCond(Conditional secondCond) Conditional.SecondCondition.secondCond(Conditional secondCond) Constructors in com.github.tadukoo.database.mysql.syntax.conditional with parameters of type ConditionalModifierConstructorDescriptionprivateConditional(Conditional firstCond, ConditionalStatement firstCondStmt, SQLConjunctiveOperator operator, Conditional secondCond, ConditionalStatement secondCondStmt) Constructs a new Conditional using the given parameters -
Uses of Conditional in com.github.tadukoo.database.mysql.syntax.statement
Fields in com.github.tadukoo.database.mysql.syntax.statement declared as ConditionalModifier and TypeFieldDescriptionprivate ConditionalSQLDeleteStatement.SQLDeleteStatementBuilder.whereStatementThewhere statementto use for what to deleteprivate final ConditionalSQLDeleteStatement.whereStatementThewhere statementto use for what to deleteprivate ConditionalSQLSelectStatement.SQLSelectStatementBuilder.whereStatementThe conditional where statementprivate final ConditionalSQLSelectStatement.whereStatementThe conditional where statementprivate ConditionalSQLUpdateStatement.SQLUpdateStatementBuilder.whereStatementThewhere statementprivate final ConditionalSQLUpdateStatement.whereStatementThewhere statementMethods in com.github.tadukoo.database.mysql.syntax.statement that return ConditionalModifier and TypeMethodDescriptionSQLDeleteStatement.getWhereStatement()SQLSelectStatement.getWhereStatement()SQLUpdateStatement.getWhereStatement()Methods in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ConditionalModifier and TypeMethodDescriptionSQLDeleteStatement.SQLDeleteStatementBuilder.whereStatement(Conditional whereStatement) SQLDeleteStatement.WhereStatementAndBuild.whereStatement(Conditional whereStatement) SQLSelectStatement.SQLSelectStatementBuilder.whereStatement(Conditional whereStatement) SQLSelectStatement.WhereStatementAndBuild.whereStatement(Conditional whereStatement) SQLUpdateStatement.SQLUpdateStatementBuilder.whereStatement(Conditional whereStatement) SQLUpdateStatement.WhereStatementAndBuild.whereStatement(Conditional whereStatement) Constructors in com.github.tadukoo.database.mysql.syntax.statement with parameters of type ConditionalModifierConstructorDescriptionprivateSQLDeleteStatement(TableRef table, Conditional whereStatement) Constructs a new SQL Delete Statement with the given parametersprivateSQLSelectStatement(boolean distinct, List<ColumnRef> returnColumns, List<TableRef> fromTables, Conditional whereStatement) Constructs a newSQLSelectStatementusing the given parameters.privateSQLUpdateStatement(TableRef table, List<EqualsStatement> setStatements, Conditional whereStatement) Constructs a SQLUpdateStatement using the given parameters