Package burp.api.montoya.utilities.json
Interface JsonStringNode
- All Superinterfaces:
JsonNode
This interface is used to define a JSON string node.
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Retrieves the value for thisJsonNode
.static JsonStringNode
jsonStringNode
(String value) Creates a new instance ofJsonStringNode
from the supplied string.
-
Method Details
-
getValue
String getValue()Description copied from interface:JsonNode
Retrieves the value for thisJsonNode
. -
jsonStringNode
Creates a new instance ofJsonStringNode
from the supplied string.- Parameters:
value
- The string value.- Returns:
- A new
JsonStringNode
instance.
-