Determine if the source string still contains characters that next() can consume. @return true if not yet at the end of the source.
()
| 131 | * @return true if not yet at the end of the source. |
| 132 | */ |
| 133 | public boolean more() { |
| 134 | this.next(); |
| 135 | if (this.end()) { |
| 136 | return false; |
| 137 | } |
| 138 | this.back(); |
| 139 | return true; |
| 140 | } |
| 141 | |
| 142 | |
| 143 | /** |