Package org.assertj.core.condition
Class Join<T>
- java.lang.Object
-
- org.assertj.core.api.Condition<T>
-
- org.assertj.core.condition.Join<T>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Collection<Condition<? super T>>conditions
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Collection<Condition<? super T>>conditions()Returns the conditions to join.private static StringconditionsIsNull()private static <T> Condition<T>notNull(Condition<T> condition)-
Methods inherited from class org.assertj.core.api.Condition
as, as, describedAs, describedAs, description, matches, toString
-
-
-
-
Field Detail
-
conditions
final Collection<Condition<? super T>> conditions
-
-
Constructor Detail
-
Join
@SafeVarargs protected Join(Condition<? super T>... conditions)
Creates a new.Join- Parameters:
conditions- the conditions to join.- Throws:
NullPointerException- if the given array isnull.NullPointerException- if any of the elements in the given array isnull.
-
Join
protected Join(Iterable<? extends Condition<? super T>> conditions)
Creates a new.Join- Parameters:
conditions- the conditions to join.- Throws:
NullPointerException- if the given iterable isnull.NullPointerException- if any of the elements in the given iterable isnull.
-
-