Uses of Interface
com.jayway.jsonpath.MapFunction
-
Packages that use MapFunction Package Description com.jayway.jsonpath com.jayway.jsonpath.internal -
-
Uses of MapFunction in com.jayway.jsonpath
Methods in com.jayway.jsonpath with parameters of type MapFunction Modifier and Type Method Description <T> T
JsonPath. map(java.lang.Object jsonObject, MapFunction mapFunction, Configuration configuration)
Replaces the value on the given path with the result of theMapFunction
.DocumentContext
WriteContext. map(JsonPath path, MapFunction mapFunction)
Replaces the value on the given path with the result of theMapFunction
.DocumentContext
WriteContext. map(java.lang.String path, MapFunction mapFunction, Predicate... filters)
Replaces the value on the given path with the result of theMapFunction
. -
Uses of MapFunction in com.jayway.jsonpath.internal
Methods in com.jayway.jsonpath.internal with parameters of type MapFunction Modifier and Type Method Description void
PathRef.ArrayIndexPathRef. convert(MapFunction mapFunction, Configuration configuration)
abstract void
PathRef. convert(MapFunction mapFunction, Configuration configuration)
void
PathRef.ObjectMultiPropertyPathRef. convert(MapFunction mapFunction, Configuration configuration)
void
PathRef.ObjectPropertyPathRef. convert(MapFunction mapFunction, Configuration configuration)
void
PathRef.RootPathRef. convert(MapFunction mapFunction, Configuration configuration)
DocumentContext
JsonContext. map(JsonPath path, MapFunction mapFunction)
DocumentContext
JsonContext. map(java.lang.String path, MapFunction mapFunction, Predicate... filters)
-