nested Text Equals Ignore Case
fun nestedTextEqualsIgnoreCase(jsonNode: JsonNode, equalsIgnoreCase: String, vararg childNodes: String): Boolean
Check whether the text in specified child node(s) is equal to the specified text, case-insensitive.
Return
true
if the texts are equal, case-insensitive.
Author
Griefed
Parameters
json Node
The JsonNode from which to acquire the text.
equals Ignore Case
The text to check with whether it is equal, case-insensitive.
child Nodes
The nested nodes in the JsonNode to acquire the text from, in order.
Throws
if the requested element is not present in the JsonNode.