Package javax.jdo.query
Interface TimeExpression
- All Superinterfaces:
ComparableExpression<Time>
,Expression<Time>
Representation of a time in a query.
-
Method Summary
Modifier and TypeMethodDescriptiongetHour()
Accessor for the hour of this time.Accessor for the minute of this time.Accessor for the second of this time.Methods inherited from interface javax.jdo.query.ComparableExpression
asc, desc, gt, gt, gteq, gteq, lt, lt, lteq, lteq, max, min
Methods inherited from interface javax.jdo.query.Expression
as, cast, count, countDistinct, eq, eq, instanceOf, ne, ne
-
Method Details
-
getHour
NumericExpression<Integer> getHour()Accessor for the hour of this time.- Returns:
- Expression for the hour
-
getMinute
NumericExpression<Integer> getMinute()Accessor for the minute of this time.- Returns:
- Expression for the minute
-
getSecond
NumericExpression<Integer> getSecond()Accessor for the second of this time.- Returns:
- Expression for the second
-