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

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

package org.meeuw.json.grep.matching;

import org.meeuw.json.PathEntry;

/**
 * a precise key pattern matches only if the key exactly equals to a certain value.
 */
public class PreciseMatch extends AbstractKeyPattern  {
    private final String key;

    public PreciseMatch(String key) {
        this.key = key;
    }

    @Override
    public boolean matches(PathEntry key) {
        return this.key.equals(key.toString());
    }
    @Override
    public String toString() {
        return key;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy