()
| 210 | } // end of AggregateColl |
| 211 | |
| 212 | public boolean Rewind() { |
| 213 | if (cursor != null) |
| 214 | cursor.close(); |
| 215 | |
| 216 | if (finditer != null) |
| 217 | cursor = finditer.iterator(); |
| 218 | else if (aggiter != null) |
| 219 | cursor = aggiter.iterator(); |
| 220 | |
| 221 | return (cursor == null); |
| 222 | } // end of Rewind |
| 223 | |
| 224 | public int ReadNext() { |
| 225 | try { |