OSID Logo
OSID Specifications
search package
Version 3.1.0
Interfaceosid.search.EngineList
Implementsosid.OsidList
Used Byosid.search.EngineHierarchySession
osid.search.EngineLookupSession
osid.search.EngineQuerySession
osid.search.EngineSearchResults
Description

Like all OsidLists, EngineList provides a means for accessing Engine elements sequentially either one at a time or many at a time. Examples:

while (el.hasNext()) {
     Engine engine = el.getNextEngine();
}
                
or
while (el.hasNext()) {
     Engine[] engines = el.getNextEngines(el.available());
}
                
MethodgetNextEngine
Description

Gets the next Engine in this list.

Returnosid.search.Engine the next Engine in this list. The hasNext() method should be used to test that a next Engine is available before calling this method.
ErrorsILLEGAL_STATE no more elements available in this list
OPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.
MethodgetNextEngines
Description

Gets the next set of Engine elements in this list. The specified amount must be less than or equal to the return from available().

Parameterscardinaln the number of Engine elements requested which must be less than or equal to available()
Returnosid.search.Engine[] an array of Engine elements. The length of the array is less than or equal to the number specified.
ErrorsILLEGAL_STATE no more elements available in this list
OPERATION_FAILED unable to complete request
Compliancemandatory This method must be implemented.