Interface EdgeSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing edge searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetEdgeSearchRecord(Type edgeSearchRecordType) Gets the edge search record corresponding to the given edge search recordType.voidorderEdgeResults(EdgeSearchOrder edgeSearchOrder) Specify an ordering to the search results.voidsearchAmongEdges(IdList edgeIds) Execute this search among the given list of edges.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
-
searchAmongEdges
Execute this search among the given list of edges.- Parameters:
edgeIds- list of edges- Throws:
NullArgumentException-edgeIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderEdgeResults
Specify an ordering to the search results.- Parameters:
edgeSearchOrder- edge search order- Throws:
NullArgumentException-edgeSearchOrderisnullUnsupportedException-edgeSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getEdgeSearchRecord
Gets the edge search record corresponding to the given edge search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
edgeSearchRecordType- an edge search record type- Returns:
- the edge search record
- Throws:
NullArgumentException-edgeSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(edgeSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-