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