Uses of Enum Class
com.github.tadukoo.database.mysql.syntax.conditional.SQLConjunctiveOperator
Package
Description
Contains syntax elements relating to conditionals
-
Uses of SQLConjunctiveOperator in com.github.tadukoo.database.mysql.syntax.conditional
Modifier and TypeFieldDescriptionprivate SQLConjunctiveOperator
Conditional.ConditionalBuilder.operator
Theoperator
for the conditional (it may be null if we have just one condition)private final SQLConjunctiveOperator
Conditional.operator
Theoperator
for the conditional (it may be null if we have just one condition)Modifier and TypeMethodDescriptionstatic SQLConjunctiveOperator
SQLConjunctiveOperator.fromString
(String operator) Searches for an operator that matches the given operator stringConditional.getOperator()
static SQLConjunctiveOperator
Returns the enum constant of this class with the specified name.static SQLConjunctiveOperator[]
SQLConjunctiveOperator.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionConditional.ConditionalBuilder.operator
(SQLConjunctiveOperator operator) Conditional.Operator.operator
(SQLConjunctiveOperator operator) ModifierConstructorDescriptionprivate
Conditional
(Conditional firstCond, ConditionalStatement firstCondStmt, SQLConjunctiveOperator operator, Conditional secondCond, ConditionalStatement secondCondStmt) Constructs a new Conditional using the given parameters