Interface OsidContainableQuery
- All Superinterfaces:
OsidQuery, Suppliable
- All Known Subinterfaces:
AssessmentPartQuery, CompositionQuery, EventQuery, RecurringEventQuery, ReplyQuery, RequisiteQuery, ScheduleSlotQuery, TodoQuery
This is the query interface for searching containers. Each method
specifies an AND term while multiple invocations of the same
method produce a nested OR .
-
Method Summary
Modifier and TypeMethodDescriptionvoidClears the sequestered query terms.voidmatchSequestered(boolean match) Match containables that are sequestered.Methods inherited from interface OsidQuery
clearAnyTerms, clearKeywordTerms, getStringMatchTypes, matchAny, matchKeyword, supportsStringMatchTypeModifier and TypeMethodDescriptionvoidClears the match any terms.voidClears all keyword terms.Gets the string matching types supported.voidmatchAny(boolean match) Matches any object.voidmatchKeyword(String keyword, Type stringMatchType, boolean match) Adds a keyword to match.booleansupportsStringMatchType(Type stringMatchType) Tests if the given string matching type is supported.
-
Method Details
-
matchSequestered
void matchSequestered(boolean match) Match containables that are sequestered.- Parameters:
match-trueto match any sequestered containables,falseto match non-sequestered containables- Compliance:
mandatory- This method must be implemented.
-
clearSequesteredTerms
void clearSequesteredTerms()Clears the sequestered query terms.- Compliance:
mandatory- This method must be implemented.
-