Uses of Interface
com.jayway.jsonpath.internal.function.PathFunction
-
Packages that use PathFunction Package Description com.jayway.jsonpath.internal.function com.jayway.jsonpath.internal.function.numeric com.jayway.jsonpath.internal.path -
-
Uses of PathFunction in com.jayway.jsonpath.internal.function
Classes in com.jayway.jsonpath.internal.function that implement PathFunction Modifier and Type Class Description class
Length
Provides the length of a JSONArray Object Created by mattg on 6/26/15.class
PassthruPathFunction
Defines the default behavior which is to return the model that is provided as input as output Created by mattg on 6/26/15.Methods in com.jayway.jsonpath.internal.function that return PathFunction Modifier and Type Method Description static PathFunction
PathFunctionFactory. newFunction(java.lang.String name)
Either provides a pass thru function when the function cannot be properly mapped or otherwise returns the function implementation based on the name using the internal FUNCTION map -
Uses of PathFunction in com.jayway.jsonpath.internal.function.numeric
Classes in com.jayway.jsonpath.internal.function.numeric that implement PathFunction Modifier and Type Class Description class
AbstractAggregation
Defines the pattern for processing numerical values via an abstract implementation that iterates over the collection of JSONArray entities and verifies that each is a numerical value and then passes that along the abstract methods Created by mattg on 6/26/15.class
Average
Provides the average of a series of numbers in a JSONArray Created by mattg on 6/26/15.class
Max
Defines the summation of a series of JSONArray numerical values Created by mattg on 6/26/15.class
Min
Defines the summation of a series of JSONArray numerical values Created by mattg on 6/26/15.class
StandardDeviation
Provides the standard deviation of a series of numbers Created by mattg on 6/27/15.class
Sum
Defines the summation of a series of JSONArray numerical values Created by mattg on 6/26/15. -
Uses of PathFunction in com.jayway.jsonpath.internal.path
Methods in com.jayway.jsonpath.internal.path with parameters of type PathFunction Modifier and Type Method Description void
PathToken. invoke(PathFunction pathFunction, java.lang.String currentPath, PathRef parent, java.lang.Object model, EvaluationContextImpl ctx)
-