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

com.hazelcast.com.jayway.jsonpath.internal.function.PathFunction Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
package com.hazelcast.com.jayway.jsonpath.internal.function;

import com.hazelcast.com.jayway.jsonpath.internal.EvaluationContext;
import com.hazelcast.com.jayway.jsonpath.internal.PathRef;

import java.util.List;

/**
 * Defines the pattern by which a function can be executed over the result set in the particular path
 * being grabbed.  The Function's input is the content of the data from the json path selector and its output
 * is defined via the functions behavior.  Thus transformations in types can take place.  Additionally, functions
 * can accept multiple selectors in order to produce their output.
 *
 * Created by [email protected] on 6/26/15.
 */
public interface PathFunction {

    /**
     * Invoke the function and output a JSON object (or scalar) value which will be the result of executing the path
     *
     * @param currentPath
     *      The current path location inclusive of the function name
     * @param parent
     *      The path location above the current function
     *
     * @param model
     *      The JSON model as input to this particular function
     *
     * @param ctx
     *      Eval context, state bag used as the path is traversed, maintains the result of executing
     *
     * @param parameters
     * @return result
     */
    Object invoke(String currentPath, PathRef parent, Object model, EvaluationContext ctx, List parameters);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy