public interface OsidOperableSearchOrder extends OsidSearchOrder
An interface for specifying the ordering of search results.
Modifier and Type | Method and Description |
---|---|
void |
orderByActive(SearchOrderStyle style)
Specifies a preference for ordering the result set by the active
status.
|
void |
orderByDisabled(SearchOrderStyle style)
Specifies a preference for ordering the result set by the
administratively disabled status.
|
void |
orderByEnabled(SearchOrderStyle style)
Specifies a preference for ordering the result set by the
administratively enabled status.
|
void |
orderByOperational(SearchOrderStyle style)
Specifies a preference for ordering the results by the operational
status.
|
void orderByActive(SearchOrderStyle style)
style
- the search order styleNullArgumentException
- style
is
null
mandatory
- This method must be implemented. void orderByEnabled(SearchOrderStyle style)
style
- the search order styleNullArgumentException
- style
is
null
mandatory
- This method must be implemented. void orderByDisabled(SearchOrderStyle style)
style
- the search order styleNullArgumentException
- style
is
null
mandatory
- This method must be implemented. void orderByOperational(SearchOrderStyle style)
style
- search order styleNullArgumentException
- style
is
null
mandatory
- This method must be implemented.