Package org.assertj.core.condition
Class Join<T>
java.lang.Object
org.assertj.core.api.Condition<T>
org.assertj.core.condition.Join<T>
- Type Parameters:
T- the type of object this condition accepts.
- All Implemented Interfaces:
Descriptable<Condition<T>>
Join of two or more
Conditions.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected final Collection<Condition<? super T>>Returns the conditions to join.private static NullPointerExceptionprivate static <T> Condition<T>Methods inherited from class org.assertj.core.api.Condition
as, as, describedAs, describedAs, description, matches, toString
-
Field Details
-
conditions
-
-
Constructor Details
-
Join
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
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 Details
-
conditionsIsNull
-
notNull
-
conditions
Returns the conditions to join.- Returns:
- the conditions to join.
-