About less
Comparison in JPQL and Criteria API
Explains how comparison operators can be used in JPQL queries, including in comparing null values.... Set 2 - Java / JDO Less Than < < ... > Less Than or Equal To <= ...
javax.persistence.criteria.CriteriaBuilder
Used to construct criteria queries, compound selections, expressions, predicates, orderings.(Interface of JPA)
lt(x, y)
Create a predicate for testing whether the first argument is less than the second.(Method of javax.persistence.criteria.CriteriaBuilder)
WHERE clause (JPQL / Criteria API)
Explains how to use the WHERE clause in a JPQL query.... a predicate for testing whether the first argument is less than the second. See JavaDoc Reference Page... ( c. get ... a predicate for testing whether the first argument is less than the second. See JavaDoc Reference Page... ( c. get ...
le(x, y)
Create a predicate for testing whether the first argument is less than or equal to the second.(Method of javax.persistence.criteria.CriteriaBuilder)
JPA Query Expressions (JPQL / Criteria)
Describes JPA query (JPQL / Criteria API) expressions (literals, operators and functions).... a predicate for testing whether the first argument is less than the second. See JavaDoc Reference Page... , le ... a predicate for testing whether the first argument is less than or equal to the second. See JavaDoc Reference Page... , ...
JPA Entity Fields
Explains how to define and use primary keys in JPA, including composite and embedded primary keys.... Note : Navigation through inverse fields is much less efficient than navigation through ordinary persistent fields, since ... ; } A single value inverse field is less efficient than an inverse collection or map field because no proxy class ...
JPA Criteria API Queries
Explains how to use the JPA Criteria API (CriteriaBuilder, CriteriaQuery, etc.) to build JPQL like queries.... a predicate for testing whether the first argument is less than the second. See JavaDoc Reference Page... , le ... a predicate for testing whether the first argument is less than or equal to the second. See JavaDoc Reference Page... , ...
lessThan(x, y)
Create a predicate for testing whether the first argument is less than the second.(Method of javax.persistence.criteria.CriteriaBuilder)
lessThanOrEqualTo(x, y)
Create a predicate for testing whether the first argument is less than or equal to the second.(Method of javax.persistence.criteria.CriteriaBuilder)