Interface DateTimeFieldOperation<T>

Type Parameters:
T -
All Superinterfaces:
FieldOperation<T>

public interface DateTimeFieldOperation<T> extends FieldOperation<T>
Operations to filter DateTime fields
API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
    isAfter(Date value)
    Matches DateTime values that are after the given value
    Matches DateTime values that are after or equal to the given value
    isBefore(Date value)
    Matches DateTime values that are before the given value
    Matches DateTime values that are before or equal to the given value
    isBetween(Date fromExclusive, Date toExclusive)
    Matches DateTime values that are between the given values (exclusive)
    isEqualTo(Date value)
    Matches DateTime values that are equal to the given value
    isInDateRange(Date fromDateOnlyInclusive, Date toDateOnlyInclusive)
    Matches DateTime values that are in the range of the given Date values (inclusive).