public static <M, I> RowFilter<M, I> dateFilter (ComparisonType type, Date date, int… indices)

Returns a RowFilter that includes entries that have at least one Date value meeting the specified criteria. For example, the following RowFilter includes only entries with at least one date value after the current date:

   RowFilter.dateFilter(ComparisonType.AFTER, new Date());
 

Parameters:
type    the type of comparison to perform
date    the date to compare against
indices    the indices of the values to check. If not supplied all values are evaluated

Returns:  a RowFilter implementing the specified criteria

Exceptions:
NullPointerException    if date is null
IllegalArgumentException    if any of the indices are < 0 or type is null

See also:
java.util.Calendar, java.util.Date