NIMSDK-AOS
9.19.0
plugins
qchat
src
main
java
com
netease
nimlib
sdk
qchat
result
QChatGetByPageWithCursorResult.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.qchat.result;
2
3
public
abstract
class
QChatGetByPageWithCursorResult
extends
QChatGetByPageResult
{
4
/**
5
* 可选:查询游标,下次查询的起始位置
6
*/
7
protected
String
cursor
;
8
9
protected
QChatGetByPageWithCursorResult
() {
10
super();
11
this.cursor = null;
12
}
13
14
protected
QChatGetByPageWithCursorResult
(String cursor) {
15
super();
16
this.cursor =
cursor
;
17
}
18
19
protected
QChatGetByPageWithCursorResult
(
boolean
hasMore
,
long
nextTimeTag
, String cursor) {
20
super(hasMore, nextTimeTag);
21
this.cursor =
cursor
;
22
}
23
24
/**
25
* 获取查询游标,下次查询的起始位置
26
* @return
27
*/
28
public
String
getCursor
() {
29
return
cursor
;
30
}
31
32
/**
33
* 设置查询游标,下次查询的起始位置
34
* @param cursor
35
*/
36
public
void
setCursor
(String cursor) {
37
this.cursor =
cursor
;
38
}
39
40
@Override
41
public
String
toString
() {
42
return
"QChatGetByPageWithCursorResult{"
+
43
"hasMore="
+
hasMore
+
44
", nextTimeTag="
+
nextTimeTag
+
45
", cursor='"
+ cursor +
'\''
+
46
'}'
;
47
}
48
}
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult.QChatGetByPageWithCursorResult
QChatGetByPageWithCursorResult()
Definition:
QChatGetByPageWithCursorResult.java:9
com.netease.nimlib.sdk.qchat.result.QChatGetByPageResult.hasMore
final boolean hasMore
表示是否还有下一页
Definition:
QChatGetByPageResult.java:7
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult.toString
String toString()
Definition:
QChatGetByPageWithCursorResult.java:41
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult.QChatGetByPageWithCursorResult
QChatGetByPageWithCursorResult(boolean hasMore, long nextTimeTag, String cursor)
Definition:
QChatGetByPageWithCursorResult.java:19
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult.cursor
String cursor
可选:查询游标,下次查询的起始位置
Definition:
QChatGetByPageWithCursorResult.java:7
com.netease.nimlib.sdk.qchat.result.QChatGetByPageResult
Definition:
QChatGetByPageResult.java:3
com.netease.nimlib.sdk.qchat.result.QChatGetByPageResult.nextTimeTag
final long nextTimeTag
下一次翻页时的起始时间戳
Definition:
QChatGetByPageResult.java:12
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult.setCursor
void setCursor(String cursor)
设置查询游标,下次查询的起始位置
Definition:
QChatGetByPageWithCursorResult.java:36
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult.getCursor
String getCursor()
获取查询游标,下次查询的起始位置
Definition:
QChatGetByPageWithCursorResult.java:28
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult
Definition:
QChatGetByPageWithCursorResult.java:3
com.netease.nimlib.sdk.qchat.result.QChatGetByPageWithCursorResult.QChatGetByPageWithCursorResult
QChatGetByPageWithCursorResult(String cursor)
Definition:
QChatGetByPageWithCursorResult.java:14
生成于 2024年 十月 16日 星期三 10:25:06 , 为 NIMSDK-AOS使用
1.8.13