getFieldNames

fun getFieldNames(jsonNode: JsonNode, vararg childNodes: String): MutableIterator<String>

Get a string iterator for the field names of the last specified child node in the specified JsonNode.

Return

A string iterator for the field names in the last requested child node in the provided JsonNode.

Author

Griefed

Parameters

jsonNode

The JsonNode from which to get the string iterator.

childNodes

The nested nodes from which to get the iterator, in order.

Throws

if any of the specified child nodes can not be found in the provided JsonNode.