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
-
jsonStringNode
Creates a new instance ofJsonStringNode
from the supplied string.- Parameters:
value
- The string value.- Returns:
- A new
JsonStringNode
instance.
-