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

net.thisptr.jackson.jq.Expression Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package net.thisptr.jackson.jq;

import com.fasterxml.jackson.databind.JsonNode;

import net.thisptr.jackson.jq.exception.JsonQueryException;
import net.thisptr.jackson.jq.path.Path;

public interface Expression {

	default void apply(Scope scope, JsonNode in, Output output) throws JsonQueryException {
		apply(scope, in, null, output, false);
	}

	void apply(Scope scope, JsonNode in, Path ipath, PathOutput output, boolean requirePath) throws JsonQueryException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy