Uses of Interface
javax.jdo.query.ComparableExpression
-
Packages that use ComparableExpression 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. -
-
Uses of ComparableExpression in javax.jdo.query
Subinterfaces of ComparableExpression in javax.jdo.query Modifier and Type Interface Description interfaceBooleanExpressionRepresentation of a boolean expression.interfaceByteExpressionRepresentation of a byte expression.interfaceCharacterExpressionRepresentation of a character expression.interfaceDateExpressionRepresentation of a date in a query.interfaceDateTimeExpressionRepresentation of a date-time type in a query.interfaceEnumExpression<T>Representation of an Enum in a query.interfaceIfThenElseExpression<T>Expression representing an "IF ...interfaceLocalDateExpressionRepresentation of a java.time.LocalDate in a query.interfaceLocalDateTimeExpressionRepresentation of a java.time.LocalDateTime type in a query.interfaceLocalTimeExpressionRepresentation of a java.time.LocalTime in a query.interfaceNumericExpression<T>Representation of a numeric expression.interfaceOptionalExpression<T>Representation of an Optional type in a query.interfaceStringExpressionRepresentation of a string in a query.interfaceTimeExpressionRepresentation of a time in a query.Methods in javax.jdo.query that return ComparableExpression Modifier and Type Method 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.Methods in javax.jdo.query with parameters of type ComparableExpression Modifier and Type Method Description BooleanExpressionComparableExpression. gt(ComparableExpression<? extends T> expr)Method returning whether this expression is greater than the other expression.BooleanExpressionComparableExpression. gteq(ComparableExpression<? extends T> expr)Method returning whether this expression is greater than or equal the other expression.BooleanExpressionComparableExpression. lt(ComparableExpression<? extends T> expr)Method returning whether this expression is less than the other expression.BooleanExpressionComparableExpression. lteq(ComparableExpression<? extends T> expr)Method returning whether this expression is less than or equal the other expression. -
Uses of ComparableExpression in javax.jdo.query.geospatial
Subinterfaces of ComparableExpression in javax.jdo.query.geospatial Modifier and Type Interface Description interfaceGeometryCollectionExpression<T>Representation of a GeometryCollection expression.interfaceGeometryExpression<T>Representation of a geometry expression.interfaceLinearRingExpression<T>Representation of a LinearRing expression.interfaceLineStringExpression<T>Representation of a LineString expression.interfaceMultiLineStringExpression<T>Representation of a MultiLineString expression.interfaceMultiPointExpression<T>Representation of a MultiPoint expression.interfaceMultiPolygonExpression<T>Representation of a MultiPolygon expression.interfacePointExpression<T>Representation of a Point expression.interfacePolygonExpression<T>Representation of a Polygon expression.
-