Package org.assertj.core.condition
Class Join<T>
- java.lang.Object
-
- org.assertj.core.api.Condition<T>
-
- org.assertj.core.condition.Join<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Collection<Condition<? super T>>conditions()Returns the conditions to join.-
Methods inherited from class org.assertj.core.api.Condition
as, as, describedAs, describedAs, description, matches, toString
-
-
-
-
Constructor Detail
-
Join
@SafeVarargs protected Join(Condition<? super T>... conditions)
Creates a newJoin.- 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 newJoin.- Parameters:
conditions- the conditions to join.- Throws:
NullPointerException- if the given iterable isnull.NullPointerException- if any of the elements in the given iterable isnull.
-
-
Method Detail
-
conditions
protected final Collection<Condition<? super T>> conditions()
Returns the conditions to join.- Returns:
- the conditions to join.
-
-