Hellow, thanks for sharing these utilities, they are really good.
One feature my application needs is a filter that allows selecting a date and a time range, for example October 25, 2015, from 11:30 to Novermber 1, 2015, 16:00…
I’ll appreciate any help.
The all Compare filters can handle Dates too, since they are Comparable. So in order to make a Filter you want you need to create And filter and pass two Compare filters as parameter to its constructor. The other would be Compare.GreaterOrEqual and the other Compare.LessOrEqual. The outcome is a filter that accepts values within that range and applies also to Dates.