Interface CyclicEventSearchResults
- All Superinterfaces:
Browsable, Extensible, OsidResult, OsidSearchResults
This interface provides a means to capture results of a search.
-
Method Summary
Modifier and TypeMethodDescriptionGets the inspector for the query to examine the terms used in the search.Gets the cyclic event list resulting from the search.getCyclicEventSearchResultsRecord(Type cyclicEventSearchRecordType) Gets the cyclic event search results record corresponding to the given event search recordType.This method is used to retrieve an object implementing the requested record.Methods inherited from interface Browsable
getProperties, getPropertiesByRecordTypeMethods inherited from interface Extensible
getRecordTypes, hasRecordTypeMethods inherited from interface OsidSearchResults
getResultSize
-
Method Details
-
getCyclicEvents
CyclicEventList getCyclicEvents()Gets the cyclic event list resulting from the search.- Returns:
- the cyclic event list
- Throws:
IllegalStateException- list already retrieved- Compliance:
mandatory- This method must be implemented.
-
getCyclicEventQueryInspector
CyclicEventQueryInspector getCyclicEventQueryInspector()Gets the inspector for the query to examine the terms used in the search.- Returns:
- the query inspector
- Compliance:
mandatory- This method must be implemented.
-
getCyclicEventSearchResultsRecord
CyclicEventSearchResultsRecord getCyclicEventSearchResultsRecord(Type cyclicEventSearchRecordType) throws OperationFailedException Gets the cyclic event search results record corresponding to the given event search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
cyclicEventSearchRecordType- a cyclic event search record type- Returns:
- the cyclic event search results record
- Throws:
NullArgumentException-cyclicEventSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(cyclicEventSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-