Package | Description |
---|---|
org.datanucleus.api.jdo.query |
Package providing DataNucleus' implementation of a typesafe query mechanism, primarily JDOQL.
|
org.datanucleus.query.typesafe |
Package providing a typesafe query mechanism, primarily for JDO.
|
Modifier and Type | Class and Description |
---|---|
class |
NumericExpressionImpl<T>
Implementation of a NumericExpression.
|
Modifier and Type | Method and Description |
---|---|
NumericExpression |
NumericExpression.abs()
Method to return the absolute value expression of this expression.
|
NumericExpression |
NumericExpression.acos()
Method to return the arc cosine value expression of this expression.
|
NumericExpression |
NumericExpression.add(Expression expr)
Method to return an expression for this expression added to the passed expression.
|
NumericExpression |
NumericExpression.add(Number num)
Method to return an expression for this expression added to the passed number.
|
NumericExpression |
NumericExpression.asin()
Method to return the arc sine value expression of this expression.
|
NumericExpression |
NumericExpression.atan()
Method to return the arc tangent value expression of this expression.
|
NumericExpression |
NumericExpression.avg()
Method to return a numeric expression representing the aggregated average of this expression.
|
NumericExpression |
NumericExpression.ceil()
Method to return the ceiling value expression of this expression.
|
NumericExpression |
NumericExpression.cos()
Method to return the cosine value expression of this expression.
|
NumericExpression<Long> |
Expression.count()
Method to return a numeric expression representing the aggregated count of this expression.
|
NumericExpression<Long> |
Expression.countDistinct()
Method to return a numeric expression representing the aggregated (distinct) count of this expression.
|
NumericExpression |
NumericExpression.div(Expression expr)
Method to return an expression for this expression divided by the passed expression.
|
NumericExpression |
NumericExpression.div(Number num)
Method to return an expression for this expression divided by the passed number.
|
NumericExpression<Double> |
TypesafeQuery.doubleParameter(String name)
Method to return a numeric parameter for the query.
|
NumericExpression |
NumericExpression.exp()
Method to return the exponential value expression of this expression.
|
NumericExpression<Float> |
TypesafeQuery.floatParameter(String name)
Method to return a numeric parameter for the query.
|
NumericExpression |
NumericExpression.floor()
Method to return the floor value expression of this expression.
|
NumericExpression<Integer> |
DateExpression.getDay()
Accessor for the day (of the month) of this date.
|
NumericExpression<Integer> |
DateTimeExpression.getDay()
Accessor for the day (of the month) of this date-time.
|
NumericExpression<Integer> |
DateTimeExpression.getHour()
Accessor for the hour of this date-time.
|
NumericExpression<Integer> |
TimeExpression.getHour()
Accessor for the hour of this time.
|
NumericExpression<Integer> |
DateTimeExpression.getMinute()
Accessor for the minute of this date-time.
|
NumericExpression<Integer> |
TimeExpression.getMinute()
Accessor for the minute of this time.
|
NumericExpression<Integer> |
DateExpression.getMonth()
Accessor for the month of this date.
|
NumericExpression<Integer> |
DateTimeExpression.getMonth()
Accessor for the month of this date-time.
|
NumericExpression<Integer> |
DateTimeExpression.getSecond()
Accessor for the second of this date-time.
|
NumericExpression<Integer> |
TimeExpression.getSecond()
Accessor for the second of this time.
|
NumericExpression<Integer> |
DateExpression.getYear()
Accessor for the year of this date.
|
NumericExpression<Integer> |
DateTimeExpression.getYear()
Accessor for the year of this date-time.
|
NumericExpression |
StringExpression.indexOf(String str)
Method to return an expression for the position of the passed string in this string.
|
NumericExpression |
StringExpression.indexOf(StringExpression expr)
Method to return an expression for the position of the passed string in this string.
|
NumericExpression |
StringExpression.indexOf(StringExpression expr,
int pos)
Method to return an expression for the position of the passed string in this string after a position.
|
NumericExpression |
StringExpression.indexOf(StringExpression expr,
NumericExpression pos)
Method to return an expression for the position of the passed string in this string after a position.
|
NumericExpression |
StringExpression.indexOf(String str,
int pos)
Method to return an expression for the position of the passed string in this string after a position.
|
NumericExpression |
StringExpression.indexOf(String str,
NumericExpression pos)
Method to return an expression for the position of the passed string in this string after a position.
|
NumericExpression<Integer> |
TypesafeQuery.integerParameter(String name)
Method to return a numeric parameter for the query.
|
NumericExpression |
StringExpression.length()
Method returning a expression for the length of this string.
|
NumericExpression |
NumericExpression.log()
Method to return the logarithm value expression of this expression.
|
NumericExpression<Long> |
TypesafeQuery.longParameter(String name)
Method to return a numeric parameter for the query.
|
NumericExpression |
ComparableExpression.max()
Method to return a numeric expression representing the aggregated maximum of this expression.
|
NumericExpression |
ComparableExpression.min()
Method to return a numeric expression representing the aggregated minimum of this expression.
|
NumericExpression |
NumericExpression.mod(Expression expr)
Method to return an expression for this expression modulus the passed expression (
|
NumericExpression |
NumericExpression.mod(Number num)
Method to return an expression for this expression modulus the passed number.
|
NumericExpression |
NumericExpression.mul(Expression expr)
Method to return an expression for this expression multiplied by the passed expression.
|
NumericExpression |
NumericExpression.mul(Number num)
Method to return an expression for this expression multiplied by the passed number.
|
NumericExpression |
EnumExpression.ordinal()
Method to return an expression for the ordinal of this enum.
|
<S> NumericExpression<S> |
TypesafeSubquery.selectUnique(NumericExpression<S> expr)
Accessor for the subquery (numeric) expression from the subquery when the subquery returns a single value.
|
NumericExpression<Short> |
TypesafeQuery.shortParameter(String name)
Method to return a numeric parameter for the query.
|
NumericExpression |
NumericExpression.sin()
Method to return the sine value expression of this expression.
|
NumericExpression<Integer> |
CollectionExpression.size()
Method returning an expression for the size of the collection
|
NumericExpression<Integer> |
MapExpression.size()
Method returning an expression for the size of the map
|
NumericExpression |
NumericExpression.sqrt()
Method to return the square-root value expression of this expression.
|
NumericExpression |
NumericExpression.sub(Expression expr)
Method to return an expression for this expression subtracting the passed expression.
|
NumericExpression |
NumericExpression.sub(Number num)
Method to return an expression for this expression subtracting the passed number.
|
NumericExpression |
NumericExpression.sum()
Method to return a numeric expression representing the aggregated sum of this expression.
|
NumericExpression |
NumericExpression.tan()
Method to return the tangent value expression of this expression.
|
Modifier and Type | Method and Description |
---|---|
CharacterExpression |
StringExpression.charAt(NumericExpression pos)
Method to return an expression for the character at a position of this string expression.
|
Expression |
ListExpression.get(NumericExpression<Integer> posExpr)
Method returning the element at this position in the List.
|
NumericExpression |
StringExpression.indexOf(StringExpression expr,
NumericExpression pos)
Method to return an expression for the position of the passed string in this string after a position.
|
NumericExpression |
StringExpression.indexOf(String str,
NumericExpression pos)
Method to return an expression for the position of the passed string in this string after a position.
|
TypesafeQuery<T> |
TypesafeQuery.range(NumericExpression lowerInclExpr,
NumericExpression upperExclExpr)
Method to set the range of any required results, using expressions.
|
TypesafeQuery<T> |
TypesafeQuery.range(NumericExpression lowerInclExpr,
NumericExpression upperExclExpr)
Method to set the range of any required results, using expressions.
|
<S> NumericExpression<S> |
TypesafeSubquery.selectUnique(NumericExpression<S> expr)
Accessor for the subquery (numeric) expression from the subquery when the subquery returns a single value.
|
StringExpression |
StringExpression.substring(NumericExpression pos)
Method to return an expression for the substring of this string expression.
|
StringExpression |
StringExpression.substring(NumericExpression startPos,
NumericExpression endPos)
Method to return an expression for the substring of this string expression.
|
StringExpression |
StringExpression.substring(NumericExpression startPos,
NumericExpression endPos)
Method to return an expression for the substring of this string expression.
|
Copyright © 2018. All rights reserved.