Uses of Interface
st.orm.Operator
Packages that use Operator
Package
Description
Foundation of the data model: the mapping annotations and the record interfaces.
Java client API: templates, query builders and transactions.
-
Uses of Operator in st.orm
Modifier and TypeFieldDescriptionstatic final OperatorOperator.BETWEENTheBETWEENoperator.static final OperatorOperator.EQUALSThe=operator.static final OperatorOperator.GREATER_THANThe>operator.static final OperatorOperator.GREATER_THAN_OR_EQUALThe>=operator.static final OperatorOperator.INTheINoperator.static final OperatorOperator.IS_FALSETheIS FALSEoperator.static final OperatorOperator.IS_NOT_NULLTheIS NOT NULLoperator.static final OperatorOperator.IS_NULLTheIS NULLoperator.static final OperatorOperator.IS_TRUETheIS TRUEoperator.static final OperatorOperator.LESS_THANThe<operator.static final OperatorOperator.LESS_THAN_OR_EQUALThe<=operator.static final OperatorOperator.LIKETheLIKEoperator.static final OperatorOperator.NOT_EQUALSThe<>operator.static final OperatorOperator.NOT_INTheNOT INoperator.static final OperatorOperator.NOT_LIKETheNOT LIKEoperator. -
Uses of Operator in st.orm.template
Methods in st.orm.template with parameters of type OperatorModifier and TypeMethodDescriptionfinal <V> QueryBuilder<T, R, ID> Adds a HAVING clause to the query using the specified expression.final <V> QueryBuilder<T, R, ID> Adds a WHERE clause that matches the specified objects at the specified path in the table graph.final <V> QueryBuilder<T, R, ID> Adds a WHERE clause that matches the specified objects at the specified path in the table graph.static <V> ElementGenerates a WHERE clause based on the provided path, operator, and iterable of values or records.static <V> ElementGenerates a WHERE clause based on the provided path, operator, and values or records.abstract <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph.final <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph.protected abstract <V> PredicateBuilder<T, R, ID> Adds a condition to the WHERE clause that matches the specified objects at the specified path in the table graph or manually added joins.