| org.odata4j.core.OQueryRequest<T> |
Known Indirect Subclasses
|
A consumer-side query-request builder. Call execute() or simply iterate to issue the request.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Adds a custom name-value pair.
| |||||||||||
Sends the query-request to the OData service, returning a client-side Enumerable for subsequent in-memory operations.
| |||||||||||
Sets the expand expressions.
| |||||||||||
Sets the filter expression.
| |||||||||||
Navigates to a referenced collection using a collection-valued navigation property.
| |||||||||||
Navigates to a referenced collection using a collection-valued navigation property.
| |||||||||||
Sets the ordering expressions.
| |||||||||||
Sets the selection clauses.
| |||||||||||
Sets the number of items to skip.
| |||||||||||
Sets the number of items to return.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
java.lang.Iterable
| |||||||||||
Adds a custom name-value pair.
| name | The name |
|---|---|
| value | The value |
Sends the query-request to the OData service, returning a client-side Enumerable for subsequent in-memory operations.
The returned enumerable transparently handles server-side paging and deferred enumeration.
OQueryRequest itself also extends Iterable so that it can be used in a for each loop without calling execute().
Sets the expand expressions.
| expand | The expand expressions |
|---|
Sets the filter expression.
| filter | The filter expression |
|---|
Navigates to a referenced collection using a collection-valued navigation property.
| keyValue | Identify an entity in the current entity-set using this key value |
|---|---|
| navProperty | The collection-valued navigation property off of the entity |
Navigates to a referenced collection using a collection-valued navigation property.
| key | Identify an entity in the current entity-set using this entity-key |
|---|---|
| navProperty | The collection-valued navigation property off of the entity |
Sets the ordering expressions.
| orderBy | The ordering expressions |
|---|
Sets the selection clauses.
| select | The selection clauses |
|---|
Sets the number of items to skip.
| skip | The number of items to skip |
|---|
Sets the number of items to return.
| top | The number of items to return |
|---|