Interface Conditions<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Conditions<T> not()
      Negates this condition object.
      boolean verify​(java.util.function.Predicate<T> predicate)
      Check that the given predicate is verified against this condition object.
    • Method Detail

      • verify

        boolean verify​(java.util.function.Predicate<T> predicate)
        Check that the given predicate is verified against this condition object.
        Parameters:
        predicate - predicate to check
        Returns:
        true if the predicated is checked, false otherwise
      • not

        Conditions<T> not()
        Negates this condition object.
        Returns:
        a negated condition object