Oracle Fusion Middleware Java API Reference for Oracle TopLink (Deprecated)
11g Release 1 (11.1.1)

B32476-04

oracle.toplink.ejb.cmp
Interface CursoredCollection

All Superinterfaces:
java.util.Collection, java.lang.Iterable, java.io.Serializable
All Known Subinterfaces:
CursoredCollection

public interface CursoredCollection
extends java.io.Serializable, java.util.Collection

CursoredCollection is an interface that conforms to Collection while providing Cursor behaviour. This interface is returned from an EJB finder method that uses TopLink CursoredStream support. This is TopLink's way of providing cursored support to EJB2.0 finders. Although all methods are provided, only the following are supported: isEmpty() size() iterator() Example: Execute a finder that reads 150 projects. Read the first 50 as singles, then, read the next 50 in bulk. This simulates a screen paging down.

See Also:
CursoredStream, CursoredIterator

Method Summary
 
Methods inherited from interface java.util.Collection
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 


Copyright © 1998, 2012, Oracle. All Rights Reserved.