Interface ClientEntitySet
- All Superinterfaces:
ClientAnnotatable
,ClientInvokeResult
- All Known Subinterfaces:
ClientDelta
OData entity collection. If pagination was used to get this instance, forward page navigation URI will be available.
-
Method Summary
Modifier and TypeMethodDescriptiongetCount()
Gets in-line count.Gets delta link if exists.Gets contained entities.getNext()
Gets next page link.getOperation
(String title) Searches for operation with given title.Gets operations.void
setCount
(int count) Sets in-line count.void
setDeltaLink
(URI deltaLink) Sets delta link.Methods inherited from interface org.apache.olingo.client.api.domain.ClientAnnotatable
getAnnotations
-
Method Details
-
getNext
URI getNext()Gets next page link.- Returns:
- next page link; null value if single page or last page reached.
-
getEntities
List<ClientEntity> getEntities()Gets contained entities.- Returns:
- entity set's entities.
-
getCount
Integer getCount()Gets in-line count.- Returns:
- in-line count value.
-
setCount
void setCount(int count) Sets in-line count.- Parameters:
count
- in-line count value.
-
getDeltaLink
URI getDeltaLink()Gets delta link if exists.- Returns:
- delta link if exists; null otherwise.
-
setDeltaLink
Sets delta link.- Parameters:
deltaLink
- delta link.
-
getOperation
Searches for operation with given title.- Parameters:
title
- operation to look for- Returns:
- operation if found with given title, null otherwise
-
getOperations
List<ClientOperation> getOperations()Gets operations.- Returns:
- operations.
-