|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use User | |
|---|---|
| twitter4j | |
| Uses of User in twitter4j |
|---|
| Methods in twitter4j that return User | |
|---|---|
User |
Twitter.block(java.lang.String id)
Deprecated. Use createBlock(String id) instead |
User |
Twitter.create(java.lang.String id)
Deprecated. Use createFriendship(String id) instead |
User |
Twitter.createBlock(java.lang.String id)
Blocks the user specified in the ID parameter as the authenticating user. |
User |
Twitter.createFriendship(java.lang.String id)
Befriends the user specified in the ID parameter as the authenticating user. |
User |
Twitter.createFriendship(java.lang.String id,
boolean follow)
Befriends the user specified in the ID parameter as the authenticating user. |
User |
Twitter.destroy(java.lang.String id)
Deprecated. Use destroyFriendship(String id) instead |
User |
Twitter.destroyBlock(java.lang.String id)
Un-blocks the user specified in the ID parameter as the authenticating user. |
User |
Twitter.destroyFriendship(java.lang.String id)
Discontinues friendship with the user specified in the ID parameter as the authenticating user. |
User |
Twitter.disableNotification(java.lang.String id)
Disables notifications for updates from the specified user to the authenticating user. |
User |
Twitter.enableNotification(java.lang.String id)
Enables notifications for updates from the specified user to the authenticating user. |
User |
Twitter.follow(java.lang.String id)
Deprecated. Use enableNotification(String id) instead |
User |
Twitter.getAuthenticatedUser()
Deprecated. Use verifyCredentials() instead |
User |
DirectMessage.getRecipient()
|
User |
RetweetDetails.getRetweetingUser()
|
User |
DirectMessage.getSender()
|
User |
Status.getUser()
Return the user |
User |
Twitter.getUserDetail(java.lang.String id)
Deprecated. use showUser(id) instead |
User |
Twitter.leave(java.lang.String id)
Deprecated. Use disableNotification(String id) instead |
User |
Twitter.showUser(java.lang.String id)
Returns extended information of a given user, specified by ID or screen name as per the required id parameter below. |
User |
Twitter.unblock(java.lang.String id)
Deprecated. Use destroyBlock(String id) instead |
User |
Twitter.updateDeliverlyDevice(twitter4j.Twitter.Device device)
Sets which device Twitter delivers updates to for the authenticating user. |
User |
Twitter.updateLocation(java.lang.String location)
Deprecated. Use updateProfile(String name, String email, String url, String location, String description) instead |
User |
Twitter.updateProfile(java.lang.String name,
java.lang.String email,
java.lang.String url,
java.lang.String location,
java.lang.String description)
Sets values that users are able to set under the "Account" tab of their settings page. |
User |
Twitter.updateProfileColors(java.lang.String profileBackgroundColor,
java.lang.String profileTextColor,
java.lang.String profileLinkColor,
java.lang.String profileSidebarFillColor,
java.lang.String profileSidebarBorderColor)
Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com. |
User |
Twitter.verifyCredentials()
Returns an HTTP 200 OK response code and a representation of the requesting user if authentication was successful; returns a 401 status code and an error message if not. |
| Methods in twitter4j that return types with arguments of type User | |
|---|---|
static java.util.List<User> |
User.constructUsers(Response res,
Twitter twitter)
|
java.util.List<User> |
Twitter.getBlockingUsers()
Returns a list of user objects that the authenticating user is blocking. |
java.util.List<User> |
Twitter.getBlockingUsers(int page)
Returns a list of user objects that the authenticating user is blocking. |
java.util.List<User> |
Twitter.getFeatured()
Returns a list of the users currently featured on the site with their current statuses inline. |
java.util.List<User> |
Twitter.getFollowers()
Deprecated. use getFollowersStatuses() instead |
java.util.List<User> |
Twitter.getFollowers(int page)
Deprecated. Use getFollowersStatuses(Paging paging) instead |
java.util.List<User> |
Twitter.getFollowers(Paging paging)
Deprecated. use getFollowersStatuses(paging) |
java.util.List<User> |
Twitter.getFollowers(java.lang.String id)
Deprecated. use getFollowersStatuses(id) instead |
java.util.List<User> |
Twitter.getFollowers(java.lang.String id,
int page)
Deprecated. Use getFollowersStatuses(String id, Paging paging) instead |
java.util.List<User> |
Twitter.getFollowers(java.lang.String id,
Paging paging)
Deprecated. use getFollowersStatuses(id) instead |
java.util.List<User> |
Twitter.getFollowersStatuses()
Returns the authenticating user's followers, each with current status inline. |
java.util.List<User> |
Twitter.getFollowersStatuses(Paging paging)
Returns the authenticating user's followers, each with current status inline. |
java.util.List<User> |
Twitter.getFollowersStatuses(java.lang.String id)
Returns the authenticating user's followers, each with current status inline. |
java.util.List<User> |
Twitter.getFollowersStatuses(java.lang.String id,
Paging paging)
Returns the authenticating user's followers, each with current status inline. |
java.util.List<User> |
Twitter.getFriends()
Deprecated. use getFriendsStatues() instead |
java.util.List<User> |
Twitter.getFriends(int page)
Deprecated. Use getFriendsStatuses(Paging paging) instead |
java.util.List<User> |
Twitter.getFriends(Paging paging)
Deprecated. Use getFriendsStatuses(Paging paging) instead |
java.util.List<User> |
Twitter.getFriends(java.lang.String id)
Deprecated. use getFriendsStatuses(id) instead |
java.util.List<User> |
Twitter.getFriends(java.lang.String id,
int page)
Deprecated. Use getFriendsStatuses(String id, Paging paging) instead |
java.util.List<User> |
Twitter.getFriends(java.lang.String id,
Paging paging)
Deprecated. use getFriendsStatuses(id,paging) instead |
java.util.List<User> |
Twitter.getFriendsStatuses()
Returns the specified user's friends, each with current status inline. |
java.util.List<User> |
Twitter.getFriendsStatuses(Paging paging)
Returns the specified user's friends, each with current status inline. |
java.util.List<User> |
Twitter.getFriendsStatuses(java.lang.String id)
Returns the user's friends, each with current status inline. |
java.util.List<User> |
Twitter.getFriendsStatuses(java.lang.String id,
Paging paging)
Returns the user's friends, each with current status inline. |
| Methods in twitter4j with parameters of type User | |
|---|---|
void |
TwitterListener.blocked(User user)
Deprecated. use createdBlock instead |
void |
TwitterAdapter.blocked(User user)
Deprecated. use createdBlock instead |
void |
TwitterListener.created(User user)
Deprecated. use createdFriendship instead |
void |
TwitterAdapter.created(User user)
Deprecated. use createdFriendship instead |
void |
TwitterListener.createdBlock(User user)
|
void |
TwitterAdapter.createdBlock(User user)
|
void |
TwitterListener.createdFriendship(User user)
|
void |
TwitterAdapter.createdFriendship(User user)
|
void |
TwitterListener.destroyed(User user)
Deprecated. use destroyedFriendship instead |
void |
TwitterAdapter.destroyed(User user)
Deprecated. use destroyedFriendship instead |
void |
TwitterListener.destroyedBlock(User user)
|
void |
TwitterAdapter.destroyedBlock(User user)
|
void |
TwitterListener.destroyedFriendship(User user)
|
void |
TwitterAdapter.destroyedFriendship(User user)
|
void |
TwitterListener.disabledNotification(User user)
|
void |
TwitterAdapter.disabledNotification(User user)
|
void |
TwitterListener.enabledNotification(User user)
|
void |
TwitterAdapter.enabledNotification(User user)
|
void |
TwitterListener.followed(User user)
Deprecated. use enabledNotification instead |
void |
TwitterAdapter.followed(User user)
Deprecated. use enabledNotification instead |
void |
TwitterListener.gotUserDetail(User user)
|
void |
TwitterAdapter.gotUserDetail(User user)
|
void |
TwitterListener.left(User user)
Deprecated. use disabledNotification instead |
void |
TwitterAdapter.left(User user)
Deprecated. use disabledNotification instead |
void |
TwitterListener.unblocked(User user)
Deprecated. use destroyedBlock instead |
void |
TwitterAdapter.unblocked(User user)
Deprecated. use destroyedBlock instead |
void |
TwitterListener.updatedDeliverlyDevice(User user)
|
void |
TwitterAdapter.updatedDeliverlyDevice(User user)
|
void |
TwitterListener.updatedLocation(User user)
Deprecated. Use updatedProfile instead |
void |
TwitterAdapter.updatedLocation(User user)
Deprecated. Use updatedProfile instead |
void |
TwitterListener.updatedProfile(User user)
|
void |
TwitterAdapter.updatedProfile(User user)
|
void |
TwitterListener.updatedProfileColors(User user)
|
void |
TwitterAdapter.updatedProfileColors(User user)
|
| Method parameters in twitter4j with type arguments of type User | |
|---|---|
void |
TwitterListener.gotBlockingUsers(java.util.List<User> blockingUsers)
|
void |
TwitterAdapter.gotBlockingUsers(java.util.List<User> blockingUsers)
|
void |
TwitterListener.gotFeatured(java.util.List<User> users)
|
void |
TwitterAdapter.gotFeatured(java.util.List<User> users)
|
void |
TwitterListener.gotFollowers(java.util.List<User> users)
|
void |
TwitterAdapter.gotFollowers(java.util.List<User> users)
|
void |
TwitterListener.gotFriends(java.util.List<User> users)
|
void |
TwitterAdapter.gotFriends(java.util.List<User> users)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||