Returns total number of tokens. @return token count
()
| 162 | * @return token count |
| 163 | */ |
| 164 | public int count() { |
| 165 | init(); |
| 166 | int c = 0; |
| 167 | while(hasNext()) { |
| 168 | nextToken(); |
| 169 | c++; |
| 170 | } |
| 171 | return c; |
| 172 | } |
| 173 | |
| 174 | @Override |
| 175 | public IndexType type() { |