Class AllFilter<T>

  • Type Parameters:
    T - the type to filer on
    All Implemented Interfaces:
    Filter<T>

    public class AllFilter<T>
    extends Object
    implements Filter<T>
    A Filter that always returns true.
    Author:
    Nick Collier
    • Field Detail

      • INSTANCE

        public static final Filter INSTANCE
    • Constructor Detail

      • AllFilter

        public AllFilter()
    • Method Detail

      • evaluate

        public boolean evaluate​(T object)
        Specified by:
        evaluate in interface Filter<T>