(String other)
| 121 | } |
| 122 | |
| 123 | public boolean tokenEquals(String other) { |
| 124 | if (tokenLength != other.length()) |
| 125 | return false; |
| 126 | return data.regionMatches(tokenPos, other, 0, tokenLength); |
| 127 | } |
| 128 | |
| 129 | public int tokenAsInt() { |
| 130 | if (tokenLength == 0) |