Internal Website Search

101-150 of 200 results

CriteriaBuilder.substring(x,from) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression substring (    Expression  x,    int from ) Create an expression for substring extraction ... is 1. Parameters: x - string expression from - start position Return: expression corresponding to substring extraction Since: JPA 2.0

CriteriaBuilder.concat(x,y) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression concat (   String x,     Expression  y ) Create an expression for string concatenation. Parameters: x - string y - string expression Return: expression corresponding to concatenation Since: JPA 2.0

CriteriaBuilder.concat(x,y) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression concat (    Expression  x,    String y ) Create an expression for string concatenation. Parameters: x - string expression y - string Return: expression corresponding to concatenation 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.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.trim(ts,t,x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression trim (   CriteriaBuilder.Trimspec ts,    char t,     Expression  x ) Create expression to trim character from a string. Parameters: ts - trim specification t - character

AbstractQuery.groupBy(grouping) - JPA Method

 grouping ) Specify the expressions that are used to form groups over the query results. Replaces the previous specified grouping expressions , if any. If no grouping expressions are specified, any previously added grouping expressions are simply removed. Parameters: grouping - list of zero or

CriteriaBuilder.trim(ts,x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression trim (   CriteriaBuilder.Trimspec ts,     Expression  x ) Create expression to trim blanks from a string. Parameters: ts - trim specification x - expression for string to trim Return: trim expression Since: JPA 2.0

CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate like (    Expression  x,    String pattern,     Expression  escapeChar ) Create a predicate for testing whether the expression satisfies the given pattern. Parameters: x

CriteriaBuilder.like(x,pattern,escapeChar) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Predicate like (    Expression  x,     Expression  pattern,    char escapeChar ) Create a predicate for testing whether the expression satisfies the given pattern. Parameters: x - string

CriteriaBuilder.size(collection) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression size (    Expression  collection ) Create an expression that tests the size of a collection. Parameters: collection - expression Return: size expression Since: JPA 2.0

CriteriaBuilder.toLong(number) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression toLong (    Expression  number ) Typecast. Returns same expression object. Parameters: number - numeric expression Return: Expression <Long> Since: JPA 2.0

CriteriaBuilder.toInteger(number) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression toInteger (    Expression  number ) Typecast. Returns same expression object. Parameters: number - numeric expression Return: Expression <Integer> Since: JPA 2.0

CriteriaBuilder.toString(character) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression toString (    Expression  character ) Typecast. Returns same expression object. Parameters: character - expression Return: Expression <String> Since: JPA 2.0

CriteriaBuilder.toBigDecimal(number) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression toBigDecimal (    Expression  number ) Typecast. Returns same expression object. Parameters: number - numeric expression Return: Expression <BigDecimal> Since: JPA 2.0

CriteriaBuilder.toBigInteger(number) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression toBigInteger (    Expression  number ) Typecast. Returns same expression object. Parameters: number - numeric expression Return: Expression <BigInteger> Since: JPA 2.0

CriteriaBuilder.toDouble(number) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression toDouble (    Expression  number ) Typecast. Returns same expression object. Parameters: number - numeric expression Return: Expression <Double> Since: JPA 2.0

CriteriaBuilder.toFloat(number) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression toFloat (    Expression  number ) Typecast. Returns same expression object. Parameters: number - numeric expression Return: Expression <Float> Since: JPA 2.0

Case.otherwise(result) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder$Case Expression otherwise (    Expression  result ) Add an "else" clause to the case expression . Parameters: result - "else" result expression Return: expression 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

Case.when(condition,result) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder$Case CriteriaBuilder.Case when (    Expression  condition,     Expression  result ) Add a when/then clause to the case expression . Parameters: condition - "when" condition result - "then" result expression Return: general case expression Since: JPA 2.0

CriteriaBuilder.countDistinct(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression countDistinct (    Expression  x ) Create an aggregate expression applying the count distinct operation. Parameters: x - expression representing input value to count distinct operation Return: count distinct expression Since: JPA 2.0

CriteriaBuilder.count(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression count (    Expression  x ) Create an aggregate expression applying the count operation. Parameters: x - expression representing input value to count operation Return: count expression Since: JPA 2.0

CriteriaBuilder.least(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression least (    Expression  x ) Create an aggregate expression for finding the least of the values (strings, dates, etc). Parameters: x - expression representing input value to least operation Return: least expression Since: JPA 2.0

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.any(subquery) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression any (    Subquery  subquery ) Create an any expression over the subquery results. This expression is equivalent to a some expression . Parameters: subquery - subquery Return: any expression Since: JPA 2.0

CriteriaBuilder.locate(x,pattern,from) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression locate (    Expression  x,    String pattern,    int from ) Create expression to locate the position of one string within another, returning position of first character

CriteriaBuilder.some(subquery) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression some (    Subquery  subquery ) Create a some expression over the subquery results. This expression is equivalent to an any expression . Parameters: subquery - subquery Return: some expression Since: JPA 2.0

CriteriaBuilder.locate(x,pattern) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression locate (    Expression  x,    String pattern ) Create expression to locate the position ... - expression for string to be searched pattern - string to be located Return: expression corresponding to position Since: JPA 2.0

CriteriaBuilder.sum(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression sum (    Expression  x ) Create an aggregate expression applying the sum operation. Parameters: x - expression representing input value to sum operation Return: sum expression Since: JPA 2.0

CriteriaBuilder.avg(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression avg (    Expression  x ) Create an aggregate expression applying the avg operation. Parameters: x - expression representing input value to avg operation Return: avg expression Since: JPA 2.0

CriteriaBuilder.coalesce(x,y) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression coalesce (    Expression  x,    Y y ) Create an expression that returns null ... - expression y - value Return: coalesce expression Since: JPA 2.0

CriteriaBuilder.min(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression min (    Expression  x ) Create an aggregate expression applying the numerical min operation. Parameters: x - expression representing input value to min operation Return: min expression Since: JPA 2.0

CriteriaBuilder.greatest(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression greatest (    Expression  x ) Create an aggregate expression for finding the greatest of the values (strings, dates, etc). Parameters: x - expression representing input value to greatest operation Return: greatest expression Since: JPA 2.0

CriteriaBuilder.max(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression max (    Expression  x ) Create an aggregate expression applying the numerical max operation. Parameters: x - expression representing input value to max operation Return: max expression Since: JPA 2.0

CriteriaBuilder.substring(x,from,len) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression substring (    Expression  x,    int from,    int len ) Create an expression for substring extraction. Extracts a substring of given length starting at the specified position

CriteriaBuilder.trim(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression trim (    Expression  x ) Create expression to trim blanks from both ends of a string. Parameters: x - expression for string to trim Return: trim expression Since: JPA 2.0

CriteriaBuilder.length(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression length (    Expression  x ) Create expression to return length of a string. Parameters: x - string expression Return: length expression Since: JPA 2.0

CriteriaBuilder.upper(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression upper (    Expression  x ) Create expression for converting a string to uppercase. Parameters: x - string expression Return: expression to convert to uppercase Since: JPA 2.0

CriteriaBuilder.lower(x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression lower (    Expression  x ) Create expression for converting a string to lowercase. Parameters: x - string expression Return: expression to convert to lowercase Since: JPA 2.0

CriteriaBuilder.trim(t,x) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression trim (   char t,     Expression  x ) Create expression to trim character from both ends of a string. Parameters: t - character to be trimmed x - expression for string to trim Return: trim expression Since: JPA 2.0

CriteriaQuery.orderBy(o) - JPA Method

 o ) Specify the ordering expressions that are used to order the query results. Replaces the previous ordering expressions , if any. If no ordering expressions are specified, the previous ordering ... of the ordering expressions in the list determines the precedence, whereby the first element in the list

CriteriaQuery.orderBy(o) - JPA Method

... o ) Specify the ordering expressions that are used to order the query results. Replaces the previous ordering expressions , if any. If no ordering expressions are specified, the previous ... sequence of the ordering expressions determines the precedence, whereby the leftmost has highest

javax.persistence.criteria.CriteriaUpdate

(Path  attribute,  Expression  value) Update the value of the specified attribute ... ; Expression  value) Update the value of the specified attribute. Parameters: attribute - attribute ... from: CommonAbstractCriteria Since: JPA 2.1 CriteriaUpdate where ( Expression  restriction

Coalesce.value(value) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder$Coalesce CriteriaBuilder.Coalesce value (    Expression  value ) Add an argument to the coalesce expression . Parameters: value - expression Return: coalesce expression Since: JPA 2.0

SimpleCase.when(condition,result) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder$SimpleCase CriteriaBuilder.SimpleCase when (   C condition,     Expression  result ) Add a when/then clause to the case expression . Parameters: condition - "when" condition result - "then" result expression Return: simple case expression Since: JPA 2.0

CriteriaBuilder.diff(x,y) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression diff (    Expression  x,    N y ) Create an expression that returns the difference between its arguments. Parameters: x - expression y - value Return: difference Since: JPA 2.0

CriteriaBuilder.prod(x,y) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression prod (    Expression  x,    N y ) Create an expression that returns the product of its arguments. Parameters: x - expression y - value Return: product Since: JPA 2.0

CriteriaBuilder.prod(x,y) - JPA Method

JPA Method in javax.persistence.criteria.CriteriaBuilder Expression prod (   N x,     Expression  y ) Create an expression that returns the product of its arguments. Parameters: x - value y - expression Return: product Since: JPA 2.0

Query.setGrouping(group) - JDO Method

expressions , optionally including a "having" clause. When grouping is specified, each result expression must either be an expression contained in the grouping, or an aggregate evaluated once per group. Parameters: group a - comma-delimited list of expressions , optionally followed by the "having" keyword and a boolean expression Since: JDO 2.0