Package im.getsocial.sdk.communities
Class FollowersQuery
- java.lang.Object
-
- im.getsocial.sdk.communities.FollowersQuery
-
public final class FollowersQuery extends java.lang.Object
Describe a query to get followers for specific entity, like topic or user.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FollowersQuery
ofGroup(java.lang.String group)
Get followers of group with ID.static FollowersQuery
ofLabel(java.lang.String label)
Get followers of label.static FollowersQuery
ofTag(java.lang.String tag)
Get followers of tag.static FollowersQuery
ofTopic(java.lang.String topic)
Get followers of topic with ID.static FollowersQuery
ofUser(UserId userId)
Get followers of user with ID.
-
-
-
Method Detail
-
ofTopic
public static FollowersQuery ofTopic(java.lang.String topic)
Get followers of topic with ID.- Parameters:
topic
- Topic ID.- Returns:
- new query.
-
ofUser
public static FollowersQuery ofUser(UserId userId)
Get followers of user with ID.- Parameters:
userId
- User ID.- Returns:
- new query.
-
ofGroup
public static FollowersQuery ofGroup(java.lang.String group)
Get followers of group with ID.- Parameters:
group
- Group ID.- Returns:
- new query.
-
ofTag
public static FollowersQuery ofTag(java.lang.String tag)
Get followers of tag.- Parameters:
tag
- Tag.- Returns:
- new query.
-
ofLabel
public static FollowersQuery ofLabel(java.lang.String label)
Get followers of label.- Parameters:
label
- Label.- Returns:
- new query.
-
-