Interface AntimatroidSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing antimatroid searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAntimatroidSearchRecord(Type antimatroidSearchRecordType) Gets the antimatroid search record corresponding to the given antimatroid search recordType.This method is used to retrieve an object implementing the requested record.voidorderAntimatroidResults(AntimatroidSearchOrder antimatroidSearchOrder) Specify an ordering to the search results.voidsearchAmongAntimatroids(IdList antimatroidIds) Execute this search among the given list of antimatroids.Methods inherited from interface Extensible
getRecordTypes, hasRecordTypeModifier and TypeMethodDescriptionGets the record types available in this object.booleanhasRecordType(Type recordType) Tests if this object supports the given recordType.Methods inherited from interface OsidSearch
limitResultSetModifier and TypeMethodDescriptionvoidlimitResultSet(long start, long end) By default, searches return all matching results.
-
Method Details
-
searchAmongAntimatroids
Execute this search among the given list of antimatroids.- Parameters:
antimatroidIds- list of antimatroids- Throws:
NullArgumentException-antimatroidIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAntimatroidResults
Specify an ordering to the search results.- Parameters:
antimatroidSearchOrder- antimatroid search order- Throws:
NullArgumentException-antimatroidSearchOrderisnullUnsupportedException-antimatroidSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAntimatroidSearchRecord
AntimatroidSearchRecord getAntimatroidSearchRecord(Type antimatroidSearchRecordType) throws OperationFailedException Gets the antimatroid search record corresponding to the given antimatroid search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
antimatroidSearchRecordType- an antimatroid search record type- Returns:
- the antimatroid search record
- Throws:
NullArgumentException-antimatroidSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(antimatroidSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-