Uses of Interface
com.jayway.jsonpath.DocumentContext
-
Packages that use DocumentContext Package Description com.jayway.jsonpath com.jayway.jsonpath.internal -
-
Uses of DocumentContext in com.jayway.jsonpath
Methods in com.jayway.jsonpath that return DocumentContext Modifier and Type Method Description DocumentContextWriteContext. add(JsonPath path, java.lang.Object value)Add value to array at the given pathDocumentContextWriteContext. add(java.lang.String path, java.lang.Object value, Predicate... filters)Add value to arrayDocumentContextWriteContext. delete(JsonPath path)Deletes the given pathDocumentContextWriteContext. delete(java.lang.String path, Predicate... filters)Deletes the given pathDocumentContextWriteContext. map(JsonPath path, MapFunction mapFunction)Replaces the value on the given path with the result of theMapFunction.DocumentContextWriteContext. map(java.lang.String path, MapFunction mapFunction, Predicate... filters)Replaces the value on the given path with the result of theMapFunction.static DocumentContextJsonPath. parse(java.io.File json)Parses the given JSON input using the defaultConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.io.File json, Configuration configuration)Parses the given JSON input using the providedConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.io.InputStream json)Parses the given JSON input using the defaultConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.io.InputStream json, Configuration configuration)Parses the given JSON input using the providedConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.lang.Object json)Parses the given JSON input using the defaultConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.lang.Object json, Configuration configuration)Parses the given JSON input using the providedConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.lang.String json)Parses the given JSON input using the defaultConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.lang.String json, Configuration configuration)Parses the given JSON input using the providedConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.net.URL json)Parses the given JSON input using the defaultConfigurationand returns aDocumentContextfor path evaluationstatic DocumentContextJsonPath. parse(java.net.URL json, Configuration configuration)Parses the given JSON input using the providedConfigurationand returns aDocumentContextfor path evaluationDocumentContextParseContext. parse(java.io.File json)DocumentContextParseContext. parse(java.io.InputStream json)DocumentContextParseContext. parse(java.io.InputStream json, java.lang.String charset)DocumentContextParseContext. parse(java.lang.Object json)DocumentContextParseContext. parse(java.lang.String json)DocumentContextWriteContext. put(JsonPath path, java.lang.String key, java.lang.Object value)Add or update the key with a the given value at the given pathDocumentContextWriteContext. put(java.lang.String path, java.lang.String key, java.lang.Object value, Predicate... filters)Add or update the key with a the given value at the given pathDocumentContextWriteContext. renameKey(JsonPath path, java.lang.String oldKeyName, java.lang.String newKeyName)Renames the last key element of a given path.DocumentContextWriteContext. renameKey(java.lang.String path, java.lang.String oldKeyName, java.lang.String newKeyName, Predicate... filters)Renames the last key element of a given path.DocumentContextWriteContext. set(JsonPath path, java.lang.Object newValue)Set the value a the given pathDocumentContextWriteContext. set(java.lang.String path, java.lang.Object newValue, Predicate... filters)Set the value a the given path -
Uses of DocumentContext in com.jayway.jsonpath.internal
Classes in com.jayway.jsonpath.internal that implement DocumentContext Modifier and Type Class Description classJsonContextMethods in com.jayway.jsonpath.internal that return DocumentContext Modifier and Type Method Description DocumentContextJsonContext. add(JsonPath path, java.lang.Object value)DocumentContextJsonContext. add(java.lang.String path, java.lang.Object value, Predicate... filters)DocumentContextJsonContext. delete(JsonPath path)DocumentContextJsonContext. delete(java.lang.String path, Predicate... filters)DocumentContextJsonContext. map(JsonPath path, MapFunction mapFunction)DocumentContextJsonContext. map(java.lang.String path, MapFunction mapFunction, Predicate... filters)DocumentContextJsonContext. parse(java.io.File json)DocumentContextJsonContext. parse(java.io.InputStream json)DocumentContextJsonContext. parse(java.io.InputStream json, java.lang.String charset)DocumentContextJsonContext. parse(java.lang.Object json)DocumentContextJsonContext. parse(java.lang.String json)DocumentContextJsonContext. put(JsonPath path, java.lang.String key, java.lang.Object value)DocumentContextJsonContext. put(java.lang.String path, java.lang.String key, java.lang.Object value, Predicate... filters)DocumentContextJsonContext. renameKey(JsonPath path, java.lang.String oldKeyName, java.lang.String newKeyName)DocumentContextJsonContext. renameKey(java.lang.String path, java.lang.String oldKeyName, java.lang.String newKeyName, Predicate... filters)DocumentContextJsonContext. set(JsonPath path, java.lang.Object newValue)DocumentContextJsonContext. set(java.lang.String path, java.lang.Object newValue, Predicate... filters)
-