ObjectDB Database Search
51-100 of 140 resultsCriteriaBuilder.lessThan(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate lessThan (    Expression  x,     Expression  y ) Create a predicate for testing whether the first argument is less than the second. Parameters: x - expression y - expression Return: less-than predicate Since: JPA 2.0   | |
CriteriaBuilder.ge(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate ge (    Expression  x,     Expression  y ) Create a predicate for testing whether the first argument is greater than or equal to the second. Parameters: x - expression y - expression Return: greater-than-or-equal predicate Since: JPA 2.0   | |
CriteriaBuilder.gt(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate gt (    Expression  x,     Expression  y ) Create a predicate for testing whether the first argument is greater than the second. Parameters: x - expression y - expression Return: greater-than predicate Since: JPA 2.0   | |
CriteriaBuilder.gt(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate gt (    Expression  x,    Number y ) Create a predicate for testing whether the first argument is greater than the second. Parameters: x - expression y - value Return: greater-than predicate Since: JPA 2.0   | |
CriteriaBuilder.between(v,x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate between (    Expression  v,    Y x,    Y y ) Create a predicate ... - expression x - value y - value Return: between predicate Since: JPA 2.0   | |
CriteriaBuilder.between(v,x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate between (    ... a predicate for testing whether the first argument is between the second and third arguments in value. Parameters: v - expression x - expression y - expression Return: between predicate Since: JPA 2.0   | |
CriteriaBuilder.notEqual(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notEqual (    Expression  x,     Expression  y ) Create a predicate for testing the arguments for inequality. Parameters: x - expression y - expression Return: inequality predicate Since: JPA 2.0   | |
CriteriaBuilder.equal(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate equal (    Expression  x,    Object y ) Create a predicate for testing the arguments for equality. Parameters: x - expression y - object Return: equality predicate Since: JPA 2.0   | |
CriteriaBuilder.equal(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate equal (    Expression  x,     Expression  y ) Create a predicate for testing the arguments for equality. Parameters: x - expression y - expression Return: equality predicate Since: JPA 2.0   | |
CriteriaBuilder.isNull(x) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isNull (    Expression  x ) Create a predicate to test whether the expression is null. Parameters: x - expression Return: is-null predicate Since: JPA 2.0   | |
CriteriaBuilder.isNotNull(x) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isNotNull (    Expression  x ) Create a predicate to test whether the expression is not null. Parameters: x - expression Return: is-not-null predicate Since: JPA 2.0   | |
CriteriaBuilder.greaterThanOrEqualTo(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate greaterThanOrEqualTo (    Expression  x,     Expression  y ) Create a predicate for testing ... - expression Return: greater-than-or-equal predicate Since: JPA 2.0   | |
CriteriaBuilder.greaterThan(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate greaterThan (    Expression  x,    Y y ) Create a predicate for testing whether the first argument is greater than the second. Parameters: x - expression y - value Return: greater-than predicate Since: JPA 2.0   | |
CriteriaBuilder.notEqual(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notEqual (    Expression  x,    Object y ) Create a predicate for testing the arguments for inequality. Parameters: x - expression y - object Return: inequality predicate Since: JPA 2.0   | |
CriteriaBuilder.greaterThan(x,y) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate greaterThan (    Expression  x,     Expression  y ) Create a predicate for testing whether the first argument is greater than the second. Parameters: x - expression y - expression Return: greater-than predicate Since: JPA 2.0   | |
CriteriaBuilder.notLike(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notLike (    ... a predicate for testing whether the expression does not satisfy the given pattern. Parameters: x - string expression pattern - string escapeChar - escape character Return: not-like predicate Since: JPA 2.0   | |
CriteriaBuilder.notLike(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notLike (    ... ) Create a predicate for testing whether the expression does not satisfy the given pattern. Parameters: x - string expression pattern - string expression escapeChar - escape character Return: not-like predicate Since: JPA 2.0   | |
CriteriaBuilder.notLike(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notLike (    ... ) Create a predicate for testing whether the expression does not satisfy the given pattern. Parameters: x - string expression pattern - string escapeChar - escape character expression Return: not-like predicate Since: JPA 2.0   | |
InterfaceRef jakarta.persistence.criteria.CommonAbstractCriteria the query. Return: the query parameters Since: JPA 2.1 Predicate getRestriction () Return the predicate ... . Return: where clause predicate Since: JPA 2.1 Subquery subquery (Class  type) Create a subquery  | |
CriteriaBuilder.notLike(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notLike (    ... ;escapeChar ) Create a predicate for testing whether the expression does not satisfy the given pattern. Parameters: x - string expression pattern - string expression escapeChar - escape character expression Return: not-like predicate Since: JPA 2.0   | |
CriteriaBuilder.like(x,pattern) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate like (    Expression  x,    String pattern ) Create a predicate for testing whether the expression satisfies the given pattern. Parameters: x - string expression pattern - string Return: like predicate Since: JPA 2.0   | |
CriteriaBuilder.like(x,pattern) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate like (    Expression  x,     Expression  pattern ) Create a predicate for testing whether the expression satisfies the given pattern. Parameters: x - string expression pattern - string expression Return: like predicate Since: JPA 2.0   | |
CommonAbstractCriteria.getRestriction() - JPA Method JPA Method in jakarta.persistence.criteria.CommonAbstractCriteria Predicate getRestriction () Return the predicate that corresponds to the where clause restriction(s), or null if no restrictions have been specified. Return: where clause predicate Since: JPA 2.1   | |
CriteriaBuilder.notLike(x,pattern) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notLike (    Expression  x,     Expression  pattern ) Create a predicate for testing whether the expression does not satisfy the given pattern. Parameters: x - string expression pattern - string expression Return: not-like predicate Since: JPA 2.0   | |
AbstractQuery | |
CriteriaBuilder.notLike(x,pattern) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate notLike (    Expression  x,    String pattern ) Create a predicate for testing whether the expression does not satisfy the given pattern. Parameters: x - string expression pattern - string Return: not-like predicate Since: JPA 2.0   | |
CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate like (    ... a predicate for testing whether the expression satisfies the given pattern. Parameters: x - string expression pattern - string escapeChar - escape character Return: like predicate Since: JPA 2.0   | |
Expression | |
Expression | |
Expression | |
CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate like (    ... ) Create a predicate for testing whether the expression satisfies the given pattern. Parameters: x - string expression pattern - string escapeChar - escape character expression Return: like predicate Since: JPA 2.0   | |
CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate like (    ... ;escapeChar ) Create a predicate for testing whether the expression satisfies the given pattern. Parameters: x - string expression pattern - string expression escapeChar - escape character expression Return: like predicate Since: JPA 2.0   | |
Expression | |
CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate like (    ... ) Create a predicate for testing whether the expression satisfies the given pattern. Parameters: x - string expression pattern - string expression escapeChar - escape character Return: like predicate Since: JPA 2.0   | |
Expression | |
CriteriaBuilder.isEmpty(collection) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isEmpty (    Expression  collection ) Create a predicate that tests whether a collection is empty. Parameters: collection - expression Return: is-empty predicate Since: JPA 2.0   | |
Expression | |
CriteriaBuilder.isNotEmpty(collection) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isNotEmpty (    Expression  collection ) Create a predicate that tests whether a collection is not empty. Parameters: collection - expression Return: is-not-empty predicate Since: JPA 2.0   | |
AbstractQuery | |
AbstractQuery | |
CriteriaUpdate.where(restrictions) - JPA Method; Predicate ... restrictions ) Modify the update query to restrict the target of the update according to the conjunction of the specified restriction predicates . Replaces the previously added restriction ... . Parameters: restrictions - zero or more restriction predicates Return: the modified update query Since: JPA 2.1   | |
CriteriaBuilder.isFalse(x) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isFalse (    Expression  x ) Create a predicate testing for a false value. Parameters: x - expression to be tested Return: predicate Since: JPA 2.0   | |
CriteriaBuilder.isTrue(x) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate isTrue (    Expression  x ) Create a predicate testing for a true value. Parameters: x - expression to be tested Return: predicate Since: JPA 2.0   | |
CriteriaBuilder.exists(subquery) - JPA Method JPA Method in jakarta.persistence.criteria.CriteriaBuilder Predicate exists (    Subquery  subquery ) Create a predicate testing the existence of a subquery result. Parameters: subquery - subquery whose result is to be tested Return: exists predicate Since: JPA 2.0   | |
Join.getOn() - JPA Method JPA Method in jakarta.persistence.criteria.Join Predicate getOn () Return the predicate that corresponds to the ON restriction(s) on the join, or null if no ON condition has been specified. Return: the ON restriction predicate Since: JPA 2.1   | |
Subquery.where(restrictions) - JPA Method JPA Method in jakarta.persistence.criteria.Subquery Subquery where (    Predicate ...  ... of the specified restriction predicates . Replaces the previously added restriction(s), if any ... more restriction predicates Return: the modified subquery Since: JPA 2.0   | |
CriteriaQuery.having(restrictions) - JPA Method; Predicate ... restrictions ) Specify restrictions over the groups of the query according the conjunction of the specified restriction predicates . Replaces the previously added having restriction(s ... : restrictions - zero or more restriction predicates Return: the modified query Since: JPA 2.0   | |
InterfaceRef jakarta.persistence.criteria.SetJoin.1 SetJoin on ( Predicate ... restrictions) Modify the join to restrict the result according ... . Parameters: restrictions - zero or more restriction predicates Return: the modified join object Since: JPA 2.1   | |
AbstractQuery | |
AbstractQuery |