Package org.fest.assertions.condition
Class Join<T>
java.lang.Object
org.fest.assertions.core.Condition<T>
org.fest.assertions.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.- Author:
- Yvonne Wang, Mikhail Mazursky
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected final Collection<Condition<? super T>>Returns the conditions to join.Methods inherited from class org.fest.assertions.core.Condition
as, as, describedAs, describedAs, description, matches, toString
-
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
-
conditions
Returns the conditions to join.- Returns:
- the conditions to join.
-