void |
SimplifiedJsonTokener.back() |
Back up one character.
|
boolean |
SimplifiedJsonTokener.more() |
Determine if the source string still contains characters that next()
can consume.
|
char |
SimplifiedJsonTokener.next() |
Get the next character in the source string.
|
char |
SimplifiedJsonTokener.next(char c) |
Consume the next character, and check that it matches a specified
character.
|
String |
SimplifiedJsonTokener.next(int n) |
Get the next n characters.
|
char |
SimplifiedJsonTokener.nextClean() |
Get the next char in the string, skipping whitespace.
|
String |
SimplifiedJsonTokener.nextString(char quote) |
Return the characters up to the next close quote character.
|
String |
SimplifiedJsonTokener.nextTo(char delimiter) |
Get the text up but not including the specified character or the
end of line, whichever comes first.
|
String |
SimplifiedJsonTokener.nextTo(String delimiters) |
Get the text up but not including one of the specified delimiter
characters or the end of line, whichever comes first.
|
String |
SimplifiedJsonTokener.nextValue() |
Get the next value.
|
char |
SimplifiedJsonTokener.skipTo(char to) |
Skip characters until the next character is the requested character.
|