Class ChangedValuePredicate<T,​V>

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

    public class ChangedValuePredicate<T,​V>
    extends java.lang.Object
    implements java.util.function.Predicate<T>
    • Constructor Summary

      Constructors 
      Constructor Description
      ChangedValuePredicate​(T value, @NotNull java.util.function.Function<T,​V> converter)  
    • Method Summary

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

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

        and, negate, or
    • Constructor Detail

      • ChangedValuePredicate

        public ChangedValuePredicate​(@NotNull
                                     T value,
                                     @NotNull
                                     @NotNull java.util.function.Function<T,​V> converter)
    • Method Detail

      • test

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