Class SingleWith<V>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean satisfiedBy​(Single<? extends V> testedInstance)
      Returns whether the given instance satisfies this predicate.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SingleWith

        public SingleWith​(V delegate)
      • SingleWith

        public SingleWith​(Predicate<? super V> delegate)
    • Method Detail

      • satisfiedBy

        public boolean satisfiedBy​(Single<? extends V> testedInstance)
        Description copied from interface: Predicate
        Returns whether the given instance satisfies this predicate.
        Specified by:
        satisfiedBy in interface Predicate<V>