Package | Description |
---|---|
javax.jdo.query |
Package providing expressions for building a typed JDOQL query.
|
javax.jdo.query.geospatial |
Package providing expressions representing geospatial types in building a typed JDOQL query.
|
Modifier and Type | Interface and Description |
---|---|
interface |
BooleanExpression
Representation of a boolean expression.
|
interface |
ByteExpression
Representation of a byte expression.
|
interface |
CharacterExpression
Representation of a character expression.
|
interface |
DateExpression
Representation of a date in a query.
|
interface |
DateTimeExpression
Representation of a date-time type in a query.
|
interface |
EnumExpression<T>
Representation of an Enum in a query.
|
interface |
IfThenElseExpression<T>
Expression representing an "IF ...
|
interface |
LocalDateExpression
Representation of a java.time.LocalDate in a query.
|
interface |
LocalDateTimeExpression
Representation of a java.time.LocalDateTime type in a query.
|
interface |
LocalTimeExpression
Representation of a java.time.LocalTime in a query.
|
interface |
NumericExpression<T>
Representation of a numeric expression.
|
interface |
OptionalExpression<T>
Representation of an Optional type in a query.
|
interface |
StringExpression
Representation of a string in a query.
|
interface |
TimeExpression
Representation of a time in a query.
|
Modifier and Type | Method and Description |
---|---|
ComparableExpression<T> |
ComparableExpression.max()
Method to return a numeric expression representing the aggregated maximum of this expression.
|
ComparableExpression<T> |
ComparableExpression.min()
Method to return a numeric expression representing the aggregated minimum of this expression.
|
Modifier and Type | Method and Description |
---|---|
BooleanExpression |
ComparableExpression.gt(ComparableExpression<? extends T> expr)
Method returning whether this expression is greater than the other expression.
|
BooleanExpression |
ComparableExpression.gteq(ComparableExpression<? extends T> expr)
Method returning whether this expression is greater than or equal the other expression.
|
BooleanExpression |
ComparableExpression.lt(ComparableExpression<? extends T> expr)
Method returning whether this expression is less than the other expression.
|
BooleanExpression |
ComparableExpression.lteq(ComparableExpression<? extends T> expr)
Method returning whether this expression is less than or equal the other expression.
|
Modifier and Type | Interface and Description |
---|---|
interface |
GeometryCollectionExpression<T>
Representation of a GeometryCollection expression.
|
interface |
GeometryExpression<T>
Representation of a geometry expression.
|
interface |
LinearRingExpression<T>
Representation of a LinearRing expression.
|
interface |
LineStringExpression<T>
Representation of a LineString expression.
|
interface |
MultiLineStringExpression<T>
Representation of a MultiLineString expression.
|
interface |
MultiPointExpression<T>
Representation of a MultiPoint expression.
|
interface |
MultiPolygonExpression<T>
Representation of a MultiPolygon expression.
|
interface |
PointExpression<T>
Representation of a Point expression.
|
interface |
PolygonExpression<T>
Representation of a Polygon expression.
|
Copyright © 2020. All rights reserved.