Nullable Paging Object
class NullablePagingObject<T : Any>(href: String, items: List<T?>, limit: Int, next: String?, offset: Int, previous: String?, total: Int) : AbstractPagingObject<T, NullablePagingObject<T>>
Content copied to clipboard
The offset-based nullable paging object is a container for a set of objects. It contains a key called items (whose value is an array of the requested objects) along with other keys like previous, next and limit that can be useful in future calls. Its items are not guaranteed to be not null
Constructors
Functions
containsAll
Link copied to clipboard
flow
Link copied to clipboard
@FlowPreview()
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowBackward
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowEndOrdered
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowForward
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowOrdered
Link copied to clipboard
@FlowPreview()
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowPagingObjects
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowPagingObjectsOrdered
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowStartOrdered
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
getAllItems
Link copied to clipboard
getAllItemsNotNull
Link copied to clipboard
getAllPagingObjects
Link copied to clipboard
open suspend override fun getAllPagingObjects(): List<NullablePagingObject<T>>
Content copied to clipboard
Retrieve all PagingObjectBase associated with this rest action
getNext
Link copied to clipboard
getPrevious
Link copied to clipboard
getWithNext
Link copied to clipboard
Synchronously retrieve the next total paging objects associated with this AbstractPagingObject, including this AbstractPagingObject.
getWithNextItems
Link copied to clipboard
Retrieve the items associated with the next total paging objects associated with this rest action, including the current one.
getWithNextTotalPagingObjects
Link copied to clipboard
open suspend override fun getWithNextTotalPagingObjects(total: Int): List<NullablePagingObject<T>>
Content copied to clipboard
Synchronously retrieve the next total paging objects associated with this PagingObjectBase, including this PagingObjectBase.
lastIndexOf
Link copied to clipboard
listIterator
Link copied to clipboard
toPagingObject
Link copied to clipboard
Properties
Sources
(source)
Link copied to clipboard