Class AllOf<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      AllOf​(java.lang.Iterable<? extends Quality<? super T>> delegates)
      Matches if all the given Qualitys match or if no Quality was given.
      AllOf​(Quality<? super T>... delegates)
      Creates a Matcher that passes if all the given Qualitys match or if no Quality was given.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • AllOf

        @SafeVarargs
        public AllOf​(Quality<? super T>... delegates)
        Creates a Matcher that passes if all the given Qualitys match or if no Quality was given.
      • AllOf

        public AllOf​(java.lang.Iterable<? extends Quality<? super T>> delegates)
        Matches if all the given Qualitys match or if no Quality was given.