Internal Website Search
51-100 of 128 resultsCriteriaBuilder.notEqual(x,y) - JPA Method JPA Method in javax.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 javax.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 javax.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 javax.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 javax.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 javax.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 javax.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 javax.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 javax.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 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 | |
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 | |
javax.persistence.criteria.CommonAbstractCriteria of the update or delete. Since: JPA 2.1 Public Methods Predicate getRestriction () Return the predicate ... . Return: where clause predicate Since: JPA 2.1 Subquery subquery (Class type) Create | |
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.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) - 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 | |
CommonAbstractCriteria.getRestriction() - JPA Method JPA Method in javax.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 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 | |
AbstractQuery | |
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.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 | |
Expression.in(values) - JPA Method JPA Method in javax.persistence.criteria.Expression Predicate in ( Collection values ) Create a predicate to test whether the expression is a member of the collection. Parameters: values - collection of values to be tested against Return: predicate testing for membership Since: JPA 2.0 | |
Expression.in(values) - JPA Method JPA Method in javax.persistence.criteria.Expression Predicate in ( Expression values ) Create a predicate to test whether the expression is a member of the collection. Parameters: values - expression corresponding to collection to be tested against Return: predicate testing for membership Since: JPA 2.0 | |
Expression.in(values) - JPA Method JPA Method in javax.persistence.criteria.Expression Predicate in ( Expression ... values ) Create a predicate to test whether the expression is a member of the argument list. Parameters: values - expressions to be tested against Return: predicate testing for membership 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 ... ) 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.in(values) - JPA Method JPA Method in javax.persistence.criteria.Expression Predicate in ( Object... values ) Create a predicate to test whether the expression is a member of the argument list. Parameters: values - values to be tested against Return: predicate testing for membership 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 | |
Expression.isNull() - JPA Method JPA Method in javax.persistence.criteria.Expression Predicate isNull () Create a predicate to test whether the expression is null. Return: predicate testing whether the expression is null 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 | |
Expression.isNotNull() - JPA Method JPA Method in javax.persistence.criteria.Expression Predicate isNotNull () Create a predicate to test whether the expression is not null. Return: predicate testing whether the expression is not null 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 | |
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(s ... . Parameters: restrictions - zero or more restriction predicates Return: the modified update query Since: JPA 2.1 | |
CriteriaBuilder.isFalse(x) - JPA Method JPA Method in javax.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 javax.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 javax.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 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 | |
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 | |
javax.persistence.criteria.SetJoin on ( Predicate ... restrictions) Modify the join to restrict the result according to the specified ... : 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 | |
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 | |
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.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 | |
ListJoin.on(restrictions) - JPA Method JPA Method in javax.persistence.criteria.ListJoin ListJoin 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 | |
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 | |
javax.persistence.criteria.ListJoin: the modified join object Since: JPA 2.1 ListJoin on ( Predicate ... restrictions) Modify the join ... the previous ON condition, if any. Parameters: restrictions - zero or more restriction predicates Return: the modified join object Since: JPA 2.1 | |
MapJoin.on(restrictions) - JPA Method JPA Method in javax.persistence.criteria.MapJoin MapJoin 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 |