About less

manual

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 <= ...

 
api-jpa

javax.persistence.criteria.CriteriaBuilder

Used to construct criteria queries, compound selections, expressions, predicates, orderings.(Interface of JPA)

 
api-jpa

lt(x, y)

Create a predicate for testing whether the first argument is less than the second.(Method of javax.persistence.criteria.CriteriaBuilder)

 
manual

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 ...

 
api-jpa

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)

 
manual

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... , ...

 
manual

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 ...

 
manual

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... , ...

 
api-jpa

lessThan(x, y)

Create a predicate for testing whether the first argument is less than the second.(Method of javax.persistence.criteria.CriteriaBuilder)

 
api-jpa

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)