private static class AbstractMatcher.AndMatcher<T> extends AbstractMatcher<T> implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
private Matcher<? super T> |
a |
private Matcher<? super T> |
b |
private static long |
serialVersionUID |
| Constructor and Description |
|---|
AndMatcher(Matcher<? super T> a,
Matcher<? super T> b) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object other) |
int |
hashCode() |
boolean |
matches(T t)
Returns
true if this matches t, false otherwise. |
java.lang.String |
toString() |
and, orprivate static final long serialVersionUID
public boolean matches(T t)
Matchertrue if this matches t, false otherwise.public boolean equals(java.lang.Object other)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Object