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

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

package org.meeuw.json.grep.matching;

import com.fasterxml.jackson.core.JsonToken;
import org.meeuw.json.ParseEvent;

/**
 * @author Michiel Meeuwissen
 * @since ...
 */
abstract class  ObjectMatcher implements PathMatcher {

    @Override
    public boolean matches(ParseEvent event, String value) {
        return event.getToken() == JsonToken.END_OBJECT && matches(event);
    }

    protected abstract boolean matches(ParseEvent event);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy