Uses of Interface
org.odata4j.core.OQueryRequest

Packages that use OQueryRequest
org.odata4j.consumer The odata4j client-side (consumer-side) API. 
org.odata4j.core Core odata4j concepts. 
 

Uses of OQueryRequest in org.odata4j.consumer
 

Classes in org.odata4j.consumer that implement OQueryRequest
 class AbstractConsumerQueryRequestBase<T>
          Shared consumer request implementation for operations dealing with multiple response entities.
 class ConsumerFunctionCallRequest<T extends OObject>
          Function-call-request implementation.
 class ConsumerQueryEntitiesRequest<T>
          Query-request implementation.
 class ConsumerQueryLinksRequest
          Query-links-request implementation.
 

Methods in org.odata4j.consumer that return OQueryRequest
 OQueryRequest<T> AbstractConsumerQueryRequestBase.custom(String name, String value)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.expand(String expand)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.filter(String filter)
           
<T> OQueryRequest<T>
ODataConsumer.getEntities(Class<T> entityType, String entitySetHref)
          Gets entities from the given entity-set.
<T> OQueryRequest<T>
AbstractODataConsumer.getEntities(Class<T> entityType, String entitySetHref)
           
 OQueryRequest<OEntity> ODataConsumer.getEntities(ORelatedEntitiesLink link)
          Gets entities referred to by the given related-entities link.
 OQueryRequest<OEntity> AbstractODataConsumer.getEntities(ORelatedEntitiesLink link)
           
 OQueryRequest<OEntity> ODataConsumer.getEntities(String entitySetHref)
          Gets entities from the given entity-set.
 OQueryRequest<OEntity> AbstractODataConsumer.getEntities(String entitySetHref)
           
 OQueryRequest<OEntityId> ODataConsumer.getLinks(OEntityId sourceEntity, String targetNavProp)
          Gets related entity links for a given source entity by navigation property.
 OQueryRequest<OEntityId> AbstractODataConsumer.getLinks(OEntityId sourceEntity, String targetNavProp)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.nav(Object keyValue, String navProperty)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.nav(OEntityKey key, String navProperty)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.orderBy(String orderBy)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.select(String select)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.skip(int skip)
           
 OQueryRequest<T> AbstractConsumerQueryRequestBase.top(int top)
           
 

Uses of OQueryRequest in org.odata4j.core
 

Subinterfaces of OQueryRequest in org.odata4j.core
 interface OFunctionRequest<T>
          A consumer-side function-request builder.
 

Methods in org.odata4j.core that return OQueryRequest
 OQueryRequest<T> OQueryRequest.custom(String name, String value)
          Adds a custom name-value pair.
 OQueryRequest<T> OQueryRequest.expand(String expand)
          Sets the expand expressions.
 OQueryRequest<T> OQueryRequest.filter(String filter)
          Sets the filter expression.
 OQueryRequest<T> OQueryRequest.nav(Object keyValue, String navProperty)
          Navigates to a referenced collection using a collection-valued navigation property.
 OQueryRequest<T> OQueryRequest.nav(OEntityKey key, String navProperty)
          Navigates to a referenced collection using a collection-valued navigation property.
 OQueryRequest<T> OQueryRequest.orderBy(String orderBy)
          Sets the ordering expressions.
 OQueryRequest<T> OQueryRequest.select(String select)
          Sets the selection clauses.
 OQueryRequest<T> OQueryRequest.skip(int skip)
          Sets the number of items to skip.
 OQueryRequest<T> OQueryRequest.top(int top)
          Sets the number of items to return.
 



http://odata4j.org