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 ComparableExpression
asc, desc, gt, gt, gteq, gteq, lt, lt, lteq, lteq, max, minMethods inherited from interface 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
-