Uses of Class
com.github.davidmoten.odata.client.CollectionPage
-
Packages that use CollectionPage Package Description com.github.davidmoten.odata.client -
-
Uses of CollectionPage in com.github.davidmoten.odata.client
Methods in com.github.davidmoten.odata.client that return CollectionPage Modifier and Type Method Description <T> CollectionPage<T>Serializer. deserializeCollectionPage(String json, Class<T> cls, ContextPath contextPath, List<RequestHeader> requestHeaders, HttpRequestOptions options, Consumer<? super CollectionPage<T>> listener)CollectionPage<T>CollectionEntityRequestOptionsBuilder. get()CollectionPage<T>CollectionNonEntityRequestOptionsBuilder. get()CollectionPage<T>CollectionPageEntityRequest. get()CollectionPage<T>CollectionPageNonEntityRequest. get()Methods in com.github.davidmoten.odata.client that return types with arguments of type CollectionPage Modifier and Type Method Description Optional<CollectionPage<T>>CollectionPage. nextDelta()Returns the next delta (if exists) as given by the last page of the current collection which may have a deltaLink attribute.Optional<CollectionPage<T>>CollectionPage. nextPage()Method parameters in com.github.davidmoten.odata.client with type arguments of type CollectionPage Modifier and Type Method Description <T> CollectionPage<T>Serializer. deserializeCollectionPage(String json, Class<T> cls, ContextPath contextPath, List<RequestHeader> requestHeaders, HttpRequestOptions options, Consumer<? super CollectionPage<T>> listener)<S> SCollectionEntityRequestOptionsBuilder. to(Function<? super CollectionPage<T>,? extends S> function)<S> SCollectionNonEntityRequestOptionsBuilder. to(Function<? super CollectionPage<T>,? extends S> function)<S> SCollectionPageEntityRequest. to(Function<? super CollectionPage<T>,? extends S> function)<S> SCollectionPageNonEntityRequest. to(Function<? super CollectionPage<T>,? extends S> function)Constructor parameters in com.github.davidmoten.odata.client with type arguments of type CollectionPage Constructor Description CollectionPage(ContextPath contextPath, Class<T> cls, List<T> list, Optional<String> nextLink, Optional<String> deltaLink, UnmappedFields unmappedFields, List<RequestHeader> requestHeaders, HttpRequestOptions options, Consumer<? super CollectionPage<T>> listener)
-