Package org.fest.assertions.condition
Class Join<T>
- java.lang.Object
 - 
- org.fest.assertions.core.Condition<T>
 - 
- org.fest.assertions.condition.Join<T>
 
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.Collection<Condition<? super T>>conditions()Returns the conditions to join.- 
Methods inherited from class org.fest.assertions.core.Condition
as, as, describedAs, describedAs, description, matches, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
Join
protected Join(Condition<? super T>... conditions)
Creates a newJoin.- Parameters:
 conditions- the conditions to join.- Throws:
 java.lang.NullPointerException- if the given array isnull.java.lang.NullPointerException- if any of the elements in the given array isnull.
 
- 
Join
protected Join(java.lang.Iterable<? extends Condition<? super T>> conditions)
Creates a newJoin.- Parameters:
 conditions- the conditions to join.- Throws:
 java.lang.NullPointerException- if the given iterable isnull.java.lang.NullPointerException- if any of the elements in the given iterable isnull.
 
 - 
 
 -