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

org.meeuw.json.grep.matching.ValueEqualsMatcher Maven / Gradle / Ivy

package org.meeuw.json.grep.matching;

/**
* @author Michiel Meeuwissen
* @since ...
*/
public class ValueEqualsMatcher extends ValueMatcher {
    private final String test;

    public ValueEqualsMatcher(String test) {
        this.test = test;
    }

    @Override
    protected boolean matches(String value) {
        return test.equals(value);
    }
    @Override
    public String toString() {
        return test;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy