Class Predicates

java.lang.Object
org.apache.commons.lang3.function.Predicates

public class Predicates extends Object
Factory for Predicate.
Since:
3.18.0
  • Method Details Link icon

    • falsePredicate Link icon

      public static <T> Predicate<T> falsePredicate()
      Gets the Predicate singleton that always returns false.
      Type Parameters:
      T - the type of the input to the predicate.
      Returns:
      the Predicate singleton.
    • truePredicate Link icon

      public static <T> Predicate<T> truePredicate()
      Gets the Predicate singleton that always returns true.
      Type Parameters:
      T - the type of the input to the predicate.
      Returns:
      the Predicate singleton.