Package io.rong.imlib.model
Class PagingQueryResult
-
- All Implemented Interfaces:
public class PagingQueryResult<T>
-
-
Field Summary
Fields Modifier and Type Field Description public String
pageToken
public int
totalCount
public List<T>
data
public final static Creator<PagingQueryResult>
CREATOR
-
Constructor Summary
Constructors Constructor Description PagingQueryResult()
PagingQueryResult(String pageToken, int totalCount, List<T> data)
PagingQueryResult(Parcel in)
-
Method Summary
Modifier and Type Method Description String
getPageToken()
void
setPageToken(String pageToken)
int
getTotalCount()
void
setTotalCount(int totalCount)
List<T>
getData()
void
setData(List<T> data)
void
writeToParcel(Parcel dest, int flags)
int
describeContents()
-
-
Constructor Detail
-
PagingQueryResult
PagingQueryResult()
-
PagingQueryResult
PagingQueryResult(String pageToken, int totalCount, List<T> data)
-
PagingQueryResult
PagingQueryResult(Parcel in)
-
-
Method Detail
-
getPageToken
String getPageToken()
-
setPageToken
void setPageToken(String pageToken)
-
getTotalCount
int getTotalCount()
-
setTotalCount
void setTotalCount(int totalCount)
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
-
describeContents
int describeContents()
-
-
-
-