Package | Description |
---|---|
twitter4j |
general package for Twitter4J
|
twitter4j.api |
APIs represents Twitter API resources
|
twitter4j.json |
this package is deprecated.
|
Modifier and Type | Method and Description |
---|---|
static UserList |
TwitterObjectFactory.createUserList(String rawJSON)
Constructs a UserList object from rawJSON string.
|
Modifier and Type | Method and Description |
---|---|
UserList |
ListsResources.createUserList(String listName,
boolean isPublicList,
String description)
Creates a new list for the authenticated user.
|
UserList |
ListsResources.createUserListMember(long listId,
long userId)
Adds a member to a list.
|
UserList |
ListsResources.createUserListMember(long ownerId,
String slug,
long userId)
Adds a member to a list.
|
UserList |
ListsResources.createUserListMember(String ownerScreenName,
String slug,
long userId)
Adds a member to a list.
|
UserList |
ListsResources.createUserListMembers(long listId,
long... userIds)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.
|
UserList |
ListsResources.createUserListMembers(long listId,
String... screenNames)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.
|
UserList |
ListsResources.createUserListMembers(long ownerId,
String slug,
long... userIds)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.
|
UserList |
ListsResources.createUserListMembers(long ownerId,
String slug,
String... screenNames)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.
|
UserList |
ListsResources.createUserListMembers(String ownerScreenName,
String slug,
long... userIds)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.
|
UserList |
ListsResources.createUserListMembers(String ownerScreenName,
String slug,
String... screenNames)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names.
|
UserList |
ListsResources.createUserListSubscription(long listId)
Make the authenticated user follow the specified list.
|
UserList |
ListsResources.createUserListSubscription(long ownerId,
String slug)
Make the authenticated user follow the specified list.
|
UserList |
ListsResources.createUserListSubscription(String ownerScreenName,
String slug)
Make the authenticated user follow the specified list.
|
UserList |
ListsResources.destroyUserList(long listId)
Deletes the specified list.
|
UserList |
ListsResources.destroyUserList(long ownerId,
String slug)
Deletes the specified list.
|
UserList |
ListsResources.destroyUserList(String ownerScreenName,
String slug)
Deletes the specified list.
|
UserList |
ListsResources.destroyUserListMember(long listId,
long userId)
Removes the specified member from the list.
|
UserList |
ListsResources.destroyUserListMember(long listId,
String screenName)
Removes the specified members from the list.
|
UserList |
ListsResources.destroyUserListMember(long ownerId,
String slug,
long userId)
Removes the specified member from the list.
|
UserList |
ListsResources.destroyUserListMember(String ownerScreenName,
String slug,
long userId)
Removes the specified member from the list.
|
UserList |
ListsResources.destroyUserListMembers(long listId,
long[] userIds)
Removes the specified members from the list.
|
UserList |
ListsResources.destroyUserListMembers(long listId,
String[] screenNames)
Removes the specified members from the list.
|
UserList |
ListsResources.destroyUserListMembers(String ownerScreenName,
String slug,
String[] screenNames)
Removes the specified members from the list.
|
UserList |
ListsResources.destroyUserListSubscription(long listId)
Unsubscribes the authenticated user form the specified list.
|
UserList |
ListsResources.destroyUserListSubscription(long ownerId,
String slug)
Unsubscribes the authenticated user form the specified list.
|
UserList |
ListsResources.destroyUserListSubscription(String ownerScreenName,
String slug)
Unsubscribes the authenticated user form the specified list.
|
UserList |
ListsResources.showUserList(long listId)
Show the specified list.
|
UserList |
ListsResources.showUserList(long ownerId,
String slug)
Show the specified list.
|
UserList |
ListsResources.showUserList(String ownerScreenName,
String slug)
Show the specified list.
|
UserList |
ListsResources.updateUserList(long listId,
String newListName,
boolean isPublicList,
String newDescription)
Updates the specified list.
|
UserList |
ListsResources.updateUserList(long ownerId,
String slug,
String newListName,
boolean isPublicList,
String newDescription)
Updates the specified list.
|
UserList |
ListsResources.updateUserList(String ownerScreenName,
String slug,
String newListName,
boolean isPublicList,
String newDescription)
Updates the specified list.
|
Modifier and Type | Method and Description |
---|---|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(int count,
long cursor)
List the lists the authenticating user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(long cursor)
List the lists the authenticating user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(long listMemberId,
int count,
long cursor)
List the lists the specified user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(long listMemberId,
int count,
long cursor,
boolean filterToOwnedLists)
List the lists the specified user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(long listMemberId,
long cursor)
List the lists the specified user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(long listMemberId,
long cursor,
boolean filterToOwnedLists)
List the lists the specified user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(String listMemberScreenName,
int count,
long cursor)
List the lists the specified user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(String listMemberScreenName,
int count,
long cursor,
boolean filterToOwnedLists)
List the lists the specified user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(String listMemberScreenName,
long cursor)
List the lists the specified user has been added to.
|
PagableResponseList<UserList> |
ListsResources.getUserListMemberships(String listMemberScreenName,
long cursor,
boolean filterToOwnedLists)
List the lists the specified user has been added to.
|
ResponseList<UserList> |
ListsResources.getUserLists(long listOwnerUserId)
List the lists of the specified user.
|
ResponseList<UserList> |
ListsResources.getUserLists(long listOwnerUserId,
boolean reverse)
List the lists of the specified user.
|
ResponseList<UserList> |
ListsResources.getUserLists(String listOwnerScreenName)
List the lists of the specified user.
|
ResponseList<UserList> |
ListsResources.getUserLists(String listOwnerScreenName,
boolean reverse)
List the lists of the specified user.
|
PagableResponseList<UserList> |
ListsResources.getUserListsOwnerships(long listOwnerId,
int count,
long cursor)
Returns the lists owned by the specified Twitter user.
|
PagableResponseList<UserList> |
ListsResources.getUserListsOwnerships(long listOwnerId,
long cursor)
Returns the lists owned by the specified Twitter user.
|
PagableResponseList<UserList> |
ListsResources.getUserListsOwnerships(String listOwnerScreenName,
int count,
long cursor)
Returns the lists owned by the specified Twitter user.
|
PagableResponseList<UserList> |
ListsResources.getUserListsOwnerships(String listOwnerScreenName,
long cursor)
Returns the lists owned by the specified Twitter user.
|
PagableResponseList<UserList> |
ListsResources.getUserListSubscriptions(long listSubscriberId,
int count,
long cursor)
List the lists the specified user follows.
|
PagableResponseList<UserList> |
ListsResources.getUserListSubscriptions(long listSubscriberId,
long cursor)
List the lists the specified user follows.
|
PagableResponseList<UserList> |
ListsResources.getUserListSubscriptions(String listSubscriberScreenName,
int count,
long cursor)
List the lists the specified user follows.
|
PagableResponseList<UserList> |
ListsResources.getUserListSubscriptions(String listSubscriberScreenName,
long cursor)
List the lists the specified user follows.
|
Modifier and Type | Method and Description |
---|---|
static UserList |
DataObjectFactory.createUserList(String rawJSON)
Deprecated.
Constructs a UserList object from rawJSON string.
|
Copyright © 2020. All rights reserved.