ObjectDB Database Search
51-100 of 128 resultsCriteriaBuilder.lessThan(x,y) - JPA Method JPA Method in javax.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.lessThan(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate lessThan ( Expression x, Y y ) Create a predicate for testing whether the first argument is less than the second. Parameters: x - expression y - value Return: less-than predicate Since: JPA 2.0 | |
CriteriaBuilder.lessThanOrEqualTo(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate lessThanOrEqualTo ( Expression x, Expression y ) Create a predicate for testing whether the first argument is less than or equal to the second. Parameters: x - expression y - expression Return: less-than-or-equal predicate Since: JPA 2.0 | |
CriteriaBuilder.lessThanOrEqualTo(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate lessThanOrEqualTo ( Expression x, Y y ) Create a predicate for testing whether the first argument is less than or equal to the second. Parameters: x - expression y - value Return: less-than-or-equal predicate Since: JPA 2.0 | |
CriteriaBuilder.between(v,x,y) - JPA Method JPA Method in javax.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.between(v,x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate between ( Expression v, Y x, Y y ) Create a predicate for testing ... - expression x - value y - value Return: between predicate Since: JPA 2.0 | |
CriteriaBuilder.gt(x,y) - JPA Method JPA Method in javax.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 javax.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.ge(x,y) - JPA Method JPA Method in javax.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.ge(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate ge ( Expression x, Number y ) Create a predicate for testing whether the first argument is greater than or equal to the second. Parameters: x - expression y - value Return: greater-than-or-equal predicate Since: JPA 2.0 | |
CriteriaBuilder.lt(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate lt ( 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.lt(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate lt ( Expression x, Number y ) Create a predicate for testing whether the first argument is less than the second. Parameters: x - expression y - value Return: less-than predicate Since: JPA 2.0 | |
CriteriaBuilder.le(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate le ( Expression x, Expression y ) Create a predicate for testing whether the first argument is less than or equal to the second. Parameters: x - expression y - expression Return: less-than-or-equal predicate Since: JPA 2.0 | |
CriteriaBuilder.le(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate le ( Expression x, Number y ) Create a predicate for testing whether the first argument is less than or equal to the second. Parameters: x - expression y - value Return: less-than-or-equal predicate Since: JPA 2.0 | |
CriteriaBuilder.isEmpty(collection) - JPA Method JPA Method in javax.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 | |
CriteriaBuilder.isNotEmpty(collection) - JPA Method JPA Method in javax.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 | |
CriteriaBuilder.like(x,pattern) - JPA Method JPA Method in javax.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 | |
CriteriaBuilder.like(x,pattern) - JPA Method JPA Method in javax.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,escapeChar) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate like ( Expression ... ) 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 | |
CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate like ( Expression ... ) 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 | |
CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate like ( Expression ... ) 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 javax.persistence.criteria.CriteriaBuilder Predicate like ( Expression ... 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 | |
CriteriaBuilder.notLike(x,pattern) - JPA Method JPA Method in javax.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 | |
CriteriaBuilder.notLike(x,pattern) - JPA Method JPA Method in javax.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.notLike(x,pattern,escapeChar) - JPA Method JPA Method in javax.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.notLike(x,pattern,escapeChar) - JPA Method JPA Method in javax.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 javax.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 | |
CriteriaBuilder.notLike(x,pattern,escapeChar) - JPA Method JPA Method in javax.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 | |
CriteriaDelete.where(restrictions) - JPA Method; Predicate ... restrictions ) Modify the delete query to restrict the target of the deletion according to the conjunction of the specified restriction predicates . Replaces the previously added restriction ... . Parameters: restrictions - zero or more restriction predicates Return: the modified delete query Since: JPA 2.1 | |
CriteriaQuery.where(restrictions) - JPA Method JPA Method in javax.persistence.criteria.CriteriaQuery CriteriaQuery where ( Predicate ... of the specified restriction predicates . Replaces the previously added restriction(s), if any ... or more restriction predicates Return: the modified query 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 | |
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(s ... . Parameters: restrictions - zero or more restriction predicates Return: the modified update query Since: JPA 2.1 | |
Expression | |
Expression | |
Expression | |
Expression | |
Expression | |
Expression | |
Join.getOn() - JPA Method JPA Method in javax.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 javax.persistence.criteria.Subquery Subquery where ( Predicate ...  ... of the specified restriction predicates . Replaces the previously added restriction(s), if any. If no restrictions ... more restriction predicates Return: the modified subquery Since: JPA 2.0 | |
Subquery.having(restrictions) - JPA Method JPA Method in javax.persistence.criteria.Subquery Subquery having ( Predicate ...  ... of the specified restriction predicates . Replaces the previously added having restriction(s), if any ... - zero or more restriction predicates Return: the modified subquery Since: JPA 2.0 | |
javax.persistence.criteria.CollectionJoin: the modified join object Since: JPA 2.1 CollectionJoin on ( Predicate ... restrictions) Modify ... . Replaces the previous ON condition, if any. Parameters: restrictions - zero or more restriction predicates Return: the modified join object Since: JPA 2.1 | |
CollectionJoin.on(restrictions) - JPA Method JPA Method in javax.persistence.criteria.CollectionJoin CollectionJoin on ( Predicate ... restrictions ) Modify the join to restrict the result according to the specified ... - zero or more restriction predicates Return: the modified join object Since: JPA 2.1 | |
CriteriaBuilder.and(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate and ( Expression x, Expression y ) Create a conjunction of the given boolean expressions. Parameters: x - boolean expression y - boolean expression Return: and predicate Since: JPA 2.0 | |
CriteriaBuilder.or(x,y) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate or ( Expression x, Expression y ) Create a disjunction of the given boolean expressions. Parameters: x - boolean expression y - boolean expression Return: or predicate Since: JPA 2.0 | |
CriteriaBuilder.not(restriction) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate not ( Expression restriction ) Create a negation of the given restriction. Parameters: restriction - restriction expression Return: not predicate Since: JPA 2.0 | |
CriteriaBuilder.conjunction() - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate conjunction () Create a conjunction (with zero conjuncts). A conjunction with zero conjuncts is true. Return: and predicate Since: JPA 2.0 | |
CriteriaBuilder.disjunction() - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate disjunction () Create a disjunction (with zero disjuncts). A disjunction with zero disjuncts is false. Return: or predicate Since: JPA 2.0 | |
CriteriaBuilder.in(expression) - JPA Method JPA Method in javax.persistence.criteria.CriteriaBuilder CriteriaBuilder.In in ( Expression expression ) Create predicate to test whether given expression is contained in a list of values. Parameters: expression - to be tested against list of values Return: in predicate Since: JPA 2.0 | |
Join.on(restrictions) - JPA Method JPA Method in javax.persistence.criteria.Join Join on ( Predicate ... restrictions ) Modify the join to restrict the result according to the specified ON condition and return ... more restriction predicates Return: the modified join object Since: JPA 2.1 |