com.google.inject.matcher.AbstractMatcher Maven / Gradle / Ivy
package com.google.inject.matcher;
/**
* Implements {@code and()} and {@code or()}.
*
*/
public abstract class AbstractMatcher implements Matcher {
public Matcher and(final Matcher super T> other) {
return new AndMatcher(this, other);
}
public Matcher or(Matcher super T> other) {
return new OrMatcher(this, other);
}
private static class AndMatcher extends AbstractMatcher {
private final Matcher super T> a, b;
public AndMatcher(Matcher super T> a, Matcher super T> b) {
this.a = a;
this.b = b;
}
public boolean matches(T t) {
return a.matches(t) && b.matches(t);
}
@Override
public boolean equals(Object other) {
return other instanceof AndMatcher
&& ((AndMatcher) other).a.equals(a)
&& ((AndMatcher) other).b.equals(b);
}
@Override
public int hashCode() {
return 41 * (a.hashCode() ^ b.hashCode());
}
@Override
public String toString() {
return "and(" + a + ", " + b + ")";
}
}
private static class OrMatcher extends AbstractMatcher {
private final Matcher super T> a, b;
public OrMatcher(Matcher super T> a, Matcher super T> b) {
this.a = a;
this.b = b;
}
public boolean matches(T t) {
return a.matches(t) || b.matches(t);
}
@Override
public boolean equals(Object other) {
return other instanceof OrMatcher
&& ((OrMatcher) other).a.equals(a)
&& ((OrMatcher) other).b.equals(b);
}
@Override
public int hashCode() {
return 37 * (a.hashCode() ^ b.hashCode());
}
@Override
public String toString() {
return "or(" + a + ", " + b + ")";
}
}
}