Uses of Enum Class
org.litebridge.db.spi.query.Operator
Packages that use Operator
Package
Description
Query-related models
Query/clause specification models used in the query API
-
Uses of Operator in org.litebridge.db.spi.impl.sql
Methods in org.litebridge.db.spi.impl.sql with parameters of type OperatorModifier and TypeMethodDescriptionprotected StringAbstractSqlGenerator.mapOperator(Operator operator) Map anOperatorenum to its corresponding string representation used in logical or database operations. -
Uses of Operator in org.litebridge.db.spi.query
Methods in org.litebridge.db.spi.query that return OperatorModifier and TypeMethodDescriptionCondition.operator()Returns the value of theoperatorrecord component.static OperatorReturns the enum constant of this class with the specified name.static Operator[]Operator.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.litebridge.db.spi.query with parameters of type OperatorModifierConstructorDescriptionCondition(SelectExpression lhs, Operator operator) Convenience constructor forOperator.IS_NULLand @{code Operator.IS_NOT_NULL} operators.Condition(SelectExpression lhs, Operator operator, @Nullable Object value) Convenience constructor that wraps the given value into aLiteralExpression.Condition(SelectExpression lhs, Operator operator, @Nullable SelectExpression rhs) Creates an instance of aConditionrecord class.LogicCondition(SelectExpression lhs, Operator operator, @Nullable Object value) Constructs a logical condition with the specified left-hand side (LHS) expression, operator, and value. -
Uses of Operator in org.litebridge.orm.api.select.model
Methods in org.litebridge.orm.api.select.model that return OperatorModifier and TypeMethodDescriptionConditionSpec.getOperator()Gets the operator used in the condition.Methods in org.litebridge.orm.api.select.model with parameters of type OperatorModifier and TypeMethodDescriptionvoidConditionSpec.setOperator(Operator operator) Sets the operator for the condition.