Method that will skip all child tokens of an array or object token that the parser currently points to, iff stream points to {@link JsonToken#START_OBJECT} or {@link JsonToken#START_ARRAY}. If not, it will do nothing. After skipping, stream will point to matching {@link JsonToken#END_OBJECT} or {@link JsonToken#END_ARRAY}(possibly skipping nested pairs of START/END OBJECT/ARRAY tokens as well as value tokens). The idea is that after calling this method, application will call {@link #nextToken} to point to the nextavailable token, if any.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.