NIMSDK-AOS  9.19.0
QChatGetChannelCategoriesByPageResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
4 import java.io.Serializable;
5 import java.util.List;
6 
7 public class QChatGetChannelCategoriesByPageResult extends QChatGetByPageWithCursorResult implements Serializable {
8 
9  /**
10  * 查询到的频道分组列表
11  */
12  private final List<QChatChannelCategory> categories;
13 
14  public QChatGetChannelCategoriesByPageResult(List<QChatChannelCategory> categories) {
15  super();
16  this.categories = categories;
17  }
18 
19  public QChatGetChannelCategoriesByPageResult(boolean hasMore, long nextTimeTag, String cursor, List<QChatChannelCategory> categories) {
20  super(hasMore, nextTimeTag, cursor);
21  this.categories = categories;
22  }
23 
24  /**
25  * 获取查询到的频道分组列表
26  * @return
27  */
28  public List<QChatChannelCategory> getCategories() {
29  return categories;
30  }
31 
32  @Override
33  public String toString() {
34  return "QChatGetChannelCategoriesByPageResult{" +
35  "hasMore=" + hasMore +
36  ", nextTimeTag=" + nextTimeTag +
37  ", categories=" + categories +
38  '}';
39  }
40 }
List< QChatChannelCategory > getCategories()
获取查询到的频道分组列表
final boolean hasMore
表示是否还有下一页
String cursor
可选:查询游标,下次查询的起始位置
QChatGetChannelCategoriesByPageResult(boolean hasMore, long nextTimeTag, String cursor, List< QChatChannelCategory > categories)
final long nextTimeTag
下一次翻页时的起始时间戳