Uses of Class
io.continual.onap.services.mrCommon.SimplifiedJsonTokener.SimplifiedJsonException
Packages that use SimplifiedJsonTokener.SimplifiedJsonException
-
Uses of SimplifiedJsonTokener.SimplifiedJsonException in io.continual.onap.services.mrCommon
Methods in io.continual.onap.services.mrCommon that return SimplifiedJsonTokener.SimplifiedJsonExceptionModifier and TypeMethodDescriptionSimplifiedJsonTokener.syntaxError(String message) Make a JSONException to signal a syntax error.Methods in io.continual.onap.services.mrCommon that throw SimplifiedJsonTokener.SimplifiedJsonExceptionModifier and TypeMethodDescriptionvoidSimplifiedJsonTokener.back()Back up one character.booleanSimplifiedJsonTokener.more()Determine if the source string still contains characters that next() can consume.charSimplifiedJsonTokener.next()Get the next character in the source string.charSimplifiedJsonTokener.next(char c) Consume the next character, and check that it matches a specified character.SimplifiedJsonTokener.next(int n) Get the next n characters.charSimplifiedJsonTokener.nextClean()Get the next char in the string, skipping whitespace.SimplifiedJsonTokener.nextString(char quote) Return the characters up to the next close quote character.SimplifiedJsonTokener.nextTo(char delimiter) Get the text up but not including the specified character or the end of line, whichever comes first.Get the text up but not including one of the specified delimiter characters or the end of line, whichever comes first.SimplifiedJsonTokener.nextValue()Get the next value.charSimplifiedJsonTokener.skipTo(char to) Skip characters until the next character is the requested character.Constructors in io.continual.onap.services.mrCommon that throw SimplifiedJsonTokener.SimplifiedJsonExceptionModifierConstructorDescriptionSimplifiedJsonTokener(InputStream inputStream) Construct a JSONTokener from an InputStream.