public interface LogEntrySearchOrder extends OsidObjectSearchOrder
An interface for specifying the ordering of search results.
| Modifier and Type | Method and Description |
|---|---|
AgentSearchOrder |
getAgentSearchOrder()
Gets the agent search order.
|
IssueSearchOrder |
getIssueSearchOrder()
Gets the issue search order.
|
LogEntrySearchOrderRecord |
getLogEntrySearchOrderRecord(Type logEntryRecordType)
Gets the log entry order record corresponding to the given log entry
record
Type. |
void |
orderByAgent(SearchOrderStyle style)
Orders the results by the agent.
|
void |
orderByDate(SearchOrderStyle style)
Orders the results by the date.
|
void |
orderByIssue(SearchOrderStyle style)
Orders the results by the issue.
|
void |
orderByMessage(SearchOrderStyle style)
Orders the results by the summary.
|
void |
orderBySummary(SearchOrderStyle style)
Orders the results by the summary.
|
boolean |
supportsAgentSearchOrder()
Tests if an agent search order is available.
|
boolean |
supportsIssueSearchOrder()
Tests if an issue search order is available.
|
orderByCreateTime, orderByCumulativeRating, orderByDescription, orderByDisplayName, orderByGenusType, orderByLastModifiedTime, orderByState, orderByStatisticorderByIdgetRecordTypes, hasRecordTypevoid orderByAgent(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsAgentSearchOrder()
true if an agent search order is available,
false otherwisemandatory - This method must be implemented. AgentSearchOrder getAgentSearchOrder()
IllegalStateException -
supportsCreatorSearchOrder() is false mandatory - This method must be implemented. void orderByIssue(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. boolean supportsIssueSearchOrder()
true if an issue search order is available,
false otherwisemandatory - This method must be implemented. IssueSearchOrder getIssueSearchOrder()
IllegalStateException -
supportsIssueSearchOrder() is false mandatory - This method must be implemented. void orderByDate(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. void orderBySummary(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. void orderByMessage(SearchOrderStyle style)
style - search order styleNullArgumentException - style is
null mandatory - This method must be implemented. LogEntrySearchOrderRecord getLogEntrySearchOrderRecord(Type logEntryRecordType) throws OperationFailedException
Type. Multiple retrievals return the same
underlying object.logEntryRecordType - a log entry record typeNullArgumentException - logEntryRecordType
is null OperationFailedException - unable to complete requestUnsupportedException -
hasRecordType(logEntryRecordType) is false
mandatory - This method must be implemented.