Interface EntrySearchOrder
- All Superinterfaces:
Extensible, OsidBrowsableSearchOrder, OsidExtensibleSearchOrder, OsidIdentifiableSearchOrder, OsidObjectSearchOrder, OsidRelationshipSearchOrder, OsidSearchOrder, OsidTemporalSearchOrder, Suppliable
An interface for specifying the ordering of search results.
-
Method Summary
Modifier and TypeMethodDescriptionGets the customer order.getEntrySearchOrderRecord(Type entryRecordType) Gets the entry search order record corresponding to the given entry recordType.Gets the item search order.Gets the billing period search order.voidorderByAmount(SearchOrderStyle style) Specifies a preference for ordering the result set by the amount.voidorderByCustomer(SearchOrderStyle style) Specifies a preference for ordering the result set by customer.voidorderByDebit(SearchOrderStyle style) Specifies a preference for ordering the result set by the debit flag.voidorderByItem(SearchOrderStyle style) Specifies a preference for ordering the result set by item.voidorderByPeriod(SearchOrderStyle style) Specifies a preference for ordering the result set by billing period.voidorderByQuantity(SearchOrderStyle style) Specifies a preference for ordering the result set by the quantity.booleanTests if a customer search order is available.booleanTests if an item search order is available.booleanTests if a billing period search order is available.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 OsidIdentifiableSearchOrder
orderByIdModifier and TypeMethodDescriptionvoidorderById(SearchOrderStyle style) Specifies a preference for ordering the result set by theId.Methods inherited from interface OsidObjectSearchOrder
orderByCreateTime, orderByCumulativeRating, orderByDescription, orderByDisplayName, orderByGenusType, orderByLastModifiedTime, orderByState, orderByStatisticModifier and TypeMethodDescriptionvoidOrders by the timestamp of the first journal entry.voidorderByCumulativeRating(Id bookId, SearchOrderStyle style) Orders by the cumulative rating in a givenBook.voidSpecifies a preference for ordering the result set by the description.voidSpecifies a preference for ordering the result set by the display name.voidorderByGenusType(SearchOrderStyle style) Specifies a preference for ordering the result set by the genus type.voidOrders by the timestamp of the last journal entry.voidorderByState(Id processId, SearchOrderStyle style) Orders by the state in a givenProcess.voidorderByStatistic(Id meterId, SearchOrderStyle style) Orders by a statistic for a givenMeter.Methods inherited from interface OsidRelationshipSearchOrder
getEndReasonSearchOrder, orderByEndReason, supportsEndReasonSearchOrderModifier and TypeMethodDescriptionGets the search order for a state.voidorderByEndReason(SearchOrderStyle style) Specifies a preference for ordering the results by the end reason state.booleanTests if aStateSearchOrderis available.Methods inherited from interface OsidTemporalSearchOrder
orderByEffective, orderByEndDate, orderByStartDateModifier and TypeMethodDescriptionvoidorderByEffective(SearchOrderStyle style) Specifies a preference for ordering the result set by the effective status.voidorderByEndDate(SearchOrderStyle style) Specifies a preference for ordering the result set by the end date.voidorderByStartDate(SearchOrderStyle style) Specifies a preference for ordering the result set by the start date.
-
Method Details
-
orderByCustomer
Specifies a preference for ordering the result set by customer.- Parameters:
style- a search order style- Throws:
NullArgumentException-styleisnull- Compliance:
mandatory- This method must be implemented.
-
supportsCustomerSearchOrder
boolean supportsCustomerSearchOrder()Tests if a customer search order is available.- Returns:
trueif a customer search order is available,falseotherwise- Compliance:
mandatory- This method must be implemented.
-
getCustomerSearchOrder
CustomerSearchOrder getCustomerSearchOrder()Gets the customer order.- Returns:
- the customer search order
- Throws:
UnimplementedException-supportsCustomerSearchOrder()isfalse- Compliance:
optional- This method must be implemented if {@code supportsCustomerSearchOrder()} is {@code true} .
-
orderByItem
Specifies a preference for ordering the result set by item.- Parameters:
style- a search order style- Throws:
NullArgumentException-styleisnull- Compliance:
mandatory- This method must be implemented.
-
supportsItemSearchOrder
boolean supportsItemSearchOrder()Tests if an item search order is available.- Returns:
trueif an item search order is available,falseotherwise- Compliance:
mandatory- This method must be implemented.
-
getItemSearchOrder
ItemSearchOrder getItemSearchOrder()Gets the item search order.- Returns:
- the item search order
- Throws:
UnimplementedException-supportsItemSearchOrder()isfalse- Compliance:
optional- This method must be implemented if {@code supportsItemSearchOrder()} is {@code true} .
-
orderByPeriod
Specifies a preference for ordering the result set by billing period.- Parameters:
style- a search order style- Throws:
NullArgumentException-styleisnull- Compliance:
mandatory- This method must be implemented.
-
supportsPeriodSearchOrder
boolean supportsPeriodSearchOrder()Tests if a billing period search order is available.- Returns:
trueif a term search order is available,falseotherwise- Compliance:
mandatory- This method must be implemented.
-
getPeriodSearchOrder
PeriodSearchOrder getPeriodSearchOrder()Gets the billing period search order.- Returns:
- the period search order
- Throws:
UnimplementedException-supportsPeriodSearchOrder()isfalse- Compliance:
optional- This method must be implemented if {@code supportsPeriodSearchOrder()} is {@code true} .
-
orderByQuantity
Specifies a preference for ordering the result set by the quantity.- Parameters:
style- a search order style- Throws:
NullArgumentException-styleisnull- Compliance:
mandatory- This method must be implemented.
-
orderByAmount
Specifies a preference for ordering the result set by the amount.- Parameters:
style- a search order style- Throws:
NullArgumentException-styleisnull- Compliance:
mandatory- This method must be implemented.
-
orderByDebit
Specifies a preference for ordering the result set by the debit flag.- Parameters:
style- a search order style- Throws:
NullArgumentException-styleisnull- Compliance:
mandatory- This method must be implemented.
-
getEntrySearchOrderRecord
EntrySearchOrderRecord getEntrySearchOrderRecord(Type entryRecordType) throws OperationFailedException Gets the entry search order record corresponding to the given entry recordType. Multiple retrievals return the same underlying object.- Parameters:
entryRecordType- an entry record type- Returns:
- the entry search order record
- Throws:
NullArgumentException-entryRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(entryRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-