Modifier and Type | Field and Description |
---|---|
(package private) java.util.Collection<Condition<? super T>> |
conditions |
Modifier | Constructor and Description |
---|---|
protected |
Join(Condition<? super T>... conditions)
Creates a new
Join . |
protected |
Join(java.lang.Iterable<? extends Condition<? super T>> conditions)
Creates a new
Join . |
Modifier and Type | Method and Description |
---|---|
protected java.util.Collection<Condition<? super T>> |
conditions()
Returns the conditions to join.
|
private static java.lang.NullPointerException |
conditionsIsNull() |
private static <T> Condition<T> |
notNull(Condition<T> condition) |
as, as, describedAs, describedAs, description, matches, toString
@SafeVarargs protected Join(Condition<? super T>... conditions)
Join
.conditions
- the conditions to join.java.lang.NullPointerException
- if the given array is null
.java.lang.NullPointerException
- if any of the elements in the given array is null
.protected Join(java.lang.Iterable<? extends Condition<? super T>> conditions)
Join
.conditions
- the conditions to join.java.lang.NullPointerException
- if the given iterable is null
.java.lang.NullPointerException
- if any of the elements in the given iterable is null
.