Package javax.jdo.query
Interface LocalDateExpression
- All Superinterfaces:
ComparableExpression<LocalDate>
,Expression<LocalDate>
Representation of a java.time.LocalDate in a query.
-
Method Summary
Modifier and TypeMethodDescriptionAccessor for the day (of the month) of this date.Accessor for the month of this date.getYear()
Accessor for the year of this date.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
-
getYear
NumericExpression<Integer> getYear()Accessor for the year of this date.- Returns:
- Expression for the year
-
getMonthValue
NumericExpression<Integer> getMonthValue()Accessor for the month of this date.- Returns:
- Expression for the month
-
getDayOfMonth
NumericExpression<Integer> getDayOfMonth()Accessor for the day (of the month) of this date.- Returns:
- Expression for the day of the month
-