Package com.tngtech.archunit.lang.syntax
Class PredicateAggregator<T>
- java.lang.Object
-
- com.tngtech.archunit.lang.syntax.PredicateAggregator<T>
-
@Internal public final class PredicateAggregator<T> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description PredicateAggregator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PredicateAggregator<T>
add(DescribedPredicate<? super T> other)
DescribedPredicate<T>
get()
boolean
isPresent()
PredicateAggregator<T>
thatANDs()
PredicateAggregator<T>
thatORs()
-
-
-
Method Detail
-
add
public PredicateAggregator<T> add(DescribedPredicate<? super T> other)
-
isPresent
public boolean isPresent()
-
get
public DescribedPredicate<T> get()
-
thatANDs
public PredicateAggregator<T> thatANDs()
-
thatORs
public PredicateAggregator<T> thatORs()
-
-