ObjectDB Database Search

51-100 of 200 results

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

JPA Method in javax.persistence.criteria. CriteriaBuilder Predicate greaterThanOrEqualTo (    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

CriteriaBuilder.greaterThanOrEqualTo(x,y) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Predicate greaterThanOrEqualTo (    Expression  x,    Y 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.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 (    Expression  v,     Expression  x,     Expression  y ) Create a predicate for testing whether the first argument is between the second and third arguments in value

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 whether the first argument is between the second and third arguments in value. Parameters: v

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.neg(x) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression neg (    Expression  x ) Create an expression that returns the arithmetic negation of its argument. Parameters: x - expression Return: arithmetic negation Since: JPA 2.0

CriteriaBuilder.abs(x) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression abs (    Expression  x ) Create an expression that returns the absolute value of its argument. Parameters: x - expression Return: absolute value Since: JPA 2.0

CriteriaBuilder.sum(x,y) - JPA Method

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

CriteriaBuilder.sum(x,y) - JPA Method

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

CriteriaBuilder.sum(x,y) - JPA Method

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

CriteriaBuilder.prod(x,y) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression prod (    Expression  x,     Expression  y ) Create an expression that returns the product of its arguments. Parameters: x - expression y - expression Return: product 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

CriteriaBuilder.diff(x,y) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression diff (    Expression  x,     Expression  y ) Create an expression that returns the difference between its arguments. Parameters: x - expression y - expression Return: difference 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.diff(x,y) - JPA Method

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

CriteriaBuilder.quot(x,y) - JPA Method

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

CriteriaBuilder.quot(x,y) - JPA Method

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

CriteriaBuilder.quot(x,y) - JPA Method

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

CriteriaBuilder.mod(x,y) - JPA Method

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

CriteriaBuilder.mod(x,y) - JPA Method

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

CriteriaBuilder.mod(x,y) - JPA Method

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

CriteriaBuilder.sqrt(x) - JPA Method

JPA Method in javax.persistence.criteria. CriteriaBuilder Expression sqrt (    Expression  x ) Create an expression that returns the square root of its argument. Parameters: x - expression Return: square root 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.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.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.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