Class AndSpec<T>

java.lang.Object
org.gradle.api.specs.CompositeSpec<T>
org.gradle.api.specs.AndSpec<T>
Type Parameters:
T - The target type for this Spec
All Implemented Interfaces:
Spec<T>

public class AndSpec<T> extends CompositeSpec<T>
A CompositeSpec which requires all its specs to be true in order to evaluate to true. Uses lazy evaluation.
  • Field Details

    • EMPTY

      public static final AndSpec<?> EMPTY
  • Constructor Details

    • AndSpec

      public AndSpec()
    • AndSpec

      @SafeVarargs public AndSpec(Spec<? super T>... specs)
    • AndSpec

      public AndSpec(Iterable<? extends Spec<? super T>> specs)
  • Method Details

    • isSatisfiedBy

      public boolean isSatisfiedBy(T object)
    • findUnsatisfiedSpec

      @Nullable @Incubating public Spec<? super T> findUnsatisfiedSpec(T object)
      Finds the first Spec that is not satisfied by the object.
      Parameters:
      object - to check specs against
      Returns:
      an unsatisfied spec or null
      Since:
      7.6
    • and

      public AndSpec<T> and(Spec<? super T>... specs)
    • and

      public AndSpec<T> and(Spec<? super T> spec)
      Typed and() method for a single Spec.
      Since:
      4.3
    • and

      public AndSpec<T> and(Closure spec)
    • empty

      public static <T> AndSpec<T> empty()