• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/collections/

Lines Matching defs:iterator

63      * the {@link #iterator} method.  By default this value is {@link
73 * the {@link #iterator} method. By default this value is {@link
110 * Returns an iterator over the elements in this collection.
111 * The iterator will be read-only if the collection is read-only.
112 * This method conforms to the {@link Collection#iterator} interface.
114 * <p>The iterator returned by this method does not keep a database cursor
120 * <p>Because this iterator does not keep a cursor open, if it is used
121 * without transactions, the iterator does not have <em>cursor
123 * current iterator position can be changed or deleted by another thread.
131 public Iterator iterator() {
136 * Returns an iterator over the elements in this collection.
137 * The iterator will be read-only if the collection is read-only.
143 * iterator.</p>
145 * <p><strong>Warning:</strong> The iterator returned must be explicitly
160 * Returns a read or read-write iterator over the elements in this
167 * iterator.</p>
169 * <p><strong>Warning:</strong> The iterator returned must be explicitly
174 * @param writeAllowed is true to open a read-write iterator or false to
175 * open a read-only iterator. If the collection is read-only the iterator
200 * #storedIterator(boolean)} instead. Because the iterator returned must
201 * be closed, the method name {@code iterator} is confusing since standard
204 public StoredIterator iterator(boolean writeAllowed) {
491 * Returns an iterator representing an equality join of the indices and
495 * <p><strong>Warning:</strong> The iterator returned must be explicitly
500 * <p>The returned iterator supports only the two methods: hasNext() and
512 * @return an iterator over the elements in this collection that match
556 Object makeIteratorData(BaseIterator iterator, DataCursor cursor) {
558 return makeIteratorData(iterator,
564 abstract Object makeIteratorData(BaseIterator iterator,