All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 other) {
        return new AndMatcher(this, other);
    }

    public Matcher or(Matcher other) {
        return new OrMatcher(this, other);
    }

    private static class AndMatcher extends AbstractMatcher  {
        private final Matcher a, b;

        public AndMatcher(Matcher a, Matcher 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 a, b;

        public OrMatcher(Matcher a, Matcher 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 + ")";
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy