AdjacentItems
Kotlin
|Java
data class AdjacentItems<T>
kotlin.Any | |
↳ | androidx.paging.AdjacentItems |
Represents a pair of adjacent items, null values are used to signal boundary conditions.
Summary
Public constructors | |
---|---|
<init>(before: T?, after: T?) Represents a pair of adjacent items, null values are used to signal boundary conditions. |
Properties | |
---|---|
T? | |
T? |
Public constructors
<init>
AdjacentItems(
before: T?,
after: T?)
Represents a pair of adjacent items, null values are used to signal boundary conditions.
Properties
after
val after: T?
before
val before: T?