endArray abstract method

void endArray()

Skips the remainder of the current object.

Exits the current array, ignoring any further elements.

An array is "current" after entering it using tryArray or expectArray, and until exiting by having hasNext return false or by calling endArray. Entering another array makes that current until that array is exited.

Implementation

void endArray();