Internal Website Search

101-150 of 200 results

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

CriteriaBuilder.treat(root,type) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Root treat (    Root  root,    Class  type ) Downcast Root object to the specified type. Parameters: root - root type - type to be downcast to Return: Root object of the specified type Since: JPA 2.1

CriteriaBuilder.treat(path,type) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Path treat (   Path  path,    Class  type ) Downcast Path object to the specified type. Parameters: path - path type - type to be downcast to Return: Path object of the specified type 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

CriteriaBuilder.or(restrictions) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Predicate or (   Predicate... restrictions ) Create a disjunction of the given restriction predicates. A disjunction of zero predicates is false. Parameters: restrictions - zero or more restriction predicates Return: or 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.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.treat(join,type) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Join treat (    Join  join,    Class  type ) Downcast Join object to the specified type. Parameters: join - Join object type - type to be downcast to Return: Join object of the specified type Since: JPA 2.1

CriteriaBuilder.function(name,type,args) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression function (   String name,    Class  type,     Expression ... args ) Create an expression for the execution of a database function. Parameters: name - function name type

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

CriteriaBuilder.all(subquery) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression all (    Subquery  subquery ) Create an all expression over the subquery results. Parameters: subquery - subquery Return: all expression Since: JPA 2.0

CriteriaBuilder.treat(join,type) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder MapJoin treat (    MapJoin  join,    Class  type ) Downcast MapJoin object to the specified type. Parameters: join - MapJoin object type - type to be downcast to Return: MapJoin object of the specified type Since: JPA 2.1

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.treat(join,type) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder ListJoin treat (    ListJoin  join,    Class  type ) Downcast ListJoin object to the specified type. Parameters: join - ListJoin object type - type to be downcast to Return: ListJoin object of the specified type Since: JPA 2.1

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.treat(join,type) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder SetJoin treat (    SetJoin  join,    Class  type ) Downcast SetJoin object to the specified type. Parameters: join - SetJoin object type - type to be downcast to Return: SetJoin object of the specified type Since: JPA 2.1

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.treat(join,type) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder CollectionJoin treat (    CollectionJoin  join,    Class  type ) Downcast CollectionJoin object to the specified type. Parameters: join - CollectionJoin object type - type to be downcast to Return: CollectionJoin object of the specified type 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.and(restrictions) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Predicate and (   Predicate... restrictions ) Create a conjunction of the given restriction predicates. A conjunction of zero predicates is true. Parameters: restrictions - zero or more restriction predicates Return: and predicate Since: JPA 2.0

CriteriaBuilder.currentTimestamp() - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression currentTimestamp () Create expression to return current timestamp. Return: expression for current timestamp 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.currentDate() - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression currentDate () Create expression to return current date. Return: expression for current date Since: JPA 2.0

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

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

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 of one string within another, returning position of first character if found. The first position in

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.nullif(x,y) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression nullif (    Expression  x,     Expression  y ) Create an expression that tests whether its argument are equal, returning null if they are and the value of the first expression if they are not

CriteriaBuilder.nullif(x,y) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression nullif (    Expression  x,    Y y ) Create an expression that tests whether its argument are equal, returning null if they are and the value of the first expression if they are not. Parameters: x

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 if all its arguments evaluate to null, and the value of the first non-null argument otherwise. Parameters: x

CriteriaBuilder.asc(x) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Order asc (    Expression  x ) Create an ordering by the ascending value of the expression. Parameters: x - expression used to define the ordering Return: ascending ordering corresponding to the expression Since: JPA 2.0

CriteriaBuilder.desc(x) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Order desc (    Expression  x ) Create an ordering by the descending value of the expression. Parameters: x - expression used to define the ordering Return: descending ordering corresponding to the expression Since: JPA 2.0

CriteriaBuilder.array(selections) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder CompoundSelection array (   Selection ... selections ) Create an array-valued selection item. Parameters: selections - selection items Return: array-valued compound selection Throws: IllegalArgumentException - if an argument is a tuple- or array-valued selection item Since: JPA 2.0

CriteriaBuilder.coalesce(x,y) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression coalesce (    Expression  x,     Expression  y ) Create an expression that returns null if all its arguments evaluate to null, and the value of the first non-null argument otherwise. Parameters

CriteriaBuilder.currentTime() - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression currentTime () Create expression to return current time. Return: expression for current time 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.sumAsDouble(x) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression sumAsDouble (    Expression  x ) Create an aggregate expression applying the sum operation to a Float-valued expression, returning a Double result. Parameters: x - expression representing input value to sum operation Return: sum expression Since: JPA 2.0

CriteriaBuilder.trim(t,x) - JPA Method

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

CriteriaBuilder.sumAsLong(x) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression sumAsLong (    Expression  x ) Create an aggregate expression applying the sum operation to an Integer-valued expression, returning a Long result. Parameters: x - expression representing input value to sum operation Return: sum 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