Package org.gradle.api.specs
Classes for defining general purpose criteria.
-
Interface Summary Interface Description Spec<T> Represents some predicate against objects of type T. -
Class Summary Class Description AndSpec<T> ACompositeSpec
which requires all its specs to be true in order to evaluate to true.CompositeSpec<T> ASpec
which aggregates a sequence of otherSpec
instances.NotSpec<T> ASpec
implementation which negates anotherSpec
.OrSpec<T> ACompositeSpec
which requires any one of its specs to be true in order to evaluate to true.Specs Provides a number ofSpec
implementations.