Interface LocalDateTimeExpression

  • All Superinterfaces:
    ComparableExpression<java.time.LocalDateTime>, Expression<java.time.LocalDateTime>

    public interface LocalDateTimeExpression
    extends ComparableExpression<java.time.LocalDateTime>
    Representation of a java.time.LocalDateTime type in a query.
    • Method Detail

      • getYear

        NumericExpression<Integer> getYear()
        Accessor for the year of this date-time.
        Returns:
        Expression for the year
      • getMonthValue

        NumericExpression<Integer> getMonthValue()
        Accessor for the month of this date-time.
        Returns:
        Expression for the month
      • getDayOfMonth

        NumericExpression<Integer> getDayOfMonth()
        Accessor for the day (of the month) of this date-time.
        Returns:
        Expression for the day of the month
      • getHour

        NumericExpression<Integer> getHour()
        Accessor for the hour of this date-time.
        Returns:
        Expression for the hour
      • getMinute

        NumericExpression<Integer> getMinute()
        Accessor for the minute of this date-time.
        Returns:
        Expression for the minute
      • getSecond

        NumericExpression<Integer> getSecond()
        Accessor for the second of this date-time.
        Returns:
        Expression for the second