Determine if the source string still contains characters that next() can consume. @return true if not yet at the end of the source.
()
| 118 | * @return true if not yet at the end of the source. |
| 119 | */ |
| 120 | public boolean more() throws JSONException { |
| 121 | this.next(); |
| 122 | if (this.end()) { |
| 123 | return false; |
| 124 | } |
| 125 | this.back(); |
| 126 | return true; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Get the next character in the source string. |
no test coverage detected