Class UniqueFilter<T>

  • All Implemented Interfaces:
    java.util.function.Predicate<T>

    public class UniqueFilter<T>
    extends java.lang.Object
    implements java.util.function.Predicate<T>
    A Filter that filters out duplicate values.
    • Constructor Summary

      Constructors 
      Constructor Description
      UniqueFilter()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean test​(T o)  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or
    • Constructor Detail

      • UniqueFilter

        public UniqueFilter()
    • Method Detail

      • test

        public boolean test​(T o)
        Specified by:
        test in interface java.util.function.Predicate<T>