Uses of Interface
twitter4j.Status

Packages that use Status
twitter4j   
twitter4j.api   
 

Uses of Status in twitter4j
 

Methods in twitter4j that return Status
 Status Twitter.createFavorite(long id)
          Favorites the status specified in the ID parameter as the authenticating user.
 Status Twitter.destroyFavorite(long id)
          Un-favorites the status specified in the ID parameter as the authenticating user.
 Status Twitter.destroyStatus(long statusId)
          Destroys the status specified by the required ID parameter.
 Status Status.getRetweetedStatus()
           
 Status User.getStatus()
          Returns the current status of the user
This can be null if the instance if from Status.getUser().
 Status Twitter.retweetStatus(long statusId)
          Retweets a tweet.
 Status Twitter.showStatus(long id)
          Returns a single status, specified by the id parameter.
 Status Twitter.updateStatus(StatusUpdate latestStatus)
          Updates the user's status.
 Status Twitter.updateStatus(java.lang.String status)
          Updates the user's status.
 Status Twitter.updateStatus(java.lang.String status, GeoLocation location)
          Updates the user's status.
 Status Twitter.updateStatus(java.lang.String status, long inReplyToStatusId)
          Updates the user's status.
 Status Twitter.updateStatus(java.lang.String status, long inReplyToStatusId, GeoLocation location)
          Updates the user's status.
 

Methods in twitter4j that return types with arguments of type Status
 ResponseList<Status> Twitter.getFavorites()
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> Twitter.getFavorites(int page)
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> Twitter.getFavorites(java.lang.String id)
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> Twitter.getFavorites(java.lang.String id, int page)
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> Twitter.getFriendsTimeline()
          Returns the 20 most recent statuses posted in the last 24 hours from the authenticating1 user and that user's friends.
 ResponseList<Status> Twitter.getFriendsTimeline(Paging paging)
          Returns the 20 most recent statuses posted in the last 24 hours from the specified userid.
 ResponseList<Status> Twitter.getHomeTimeline()
          Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends.
 ResponseList<Status> Twitter.getHomeTimeline(Paging paging)
          Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends.
 ResponseList<Status> Twitter.getMentions()
          Returns the 20 most recent mentions (status containing @username) for the authenticating user.
 ResponseList<Status> Twitter.getMentions(Paging paging)
          Returns the 20 most recent mentions (status containing @username) for the authenticating user.
 ResponseList<Status> Twitter.getPublicTimeline()
          Returns the 20 most recent statuses from non-protected users who have set a custom user icon.
 ResponseList<Status> Twitter.getRetweetedByMe()
          Returns the 20 most recent retweets posted by the authenticating user.
 ResponseList<Status> Twitter.getRetweetedByMe(Paging paging)
          Returns the 20 most recent retweets posted by the authenticating user.
 ResponseList<Status> Twitter.getRetweetedToMe()
          Returns the 20 most recent retweets posted by the authenticating user's friends.
 ResponseList<Status> Twitter.getRetweetedToMe(Paging paging)
          Returns the 20 most recent retweets posted by the authenticating user's friends.
 ResponseList<Status> Twitter.getRetweets(long statusId)
          Returns up to 100 of the first retweets of a given tweet.
 ResponseList<Status> Twitter.getRetweetsOfMe()
          Returns the 20 most recent tweets of the authenticated user that have been retweeted by others.
 ResponseList<Status> Twitter.getRetweetsOfMe(Paging paging)
          Returns the 20 most recent tweets of the authenticated user that have been retweeted by others.
 ResponseList<Status> Twitter.getUserListStatuses(java.lang.String listOwnerScreenName, int id, Paging paging)
          Show tweet timeline for members of the specified list.
 ResponseList<Status> Twitter.getUserTimeline()
          Returns the most recent statuses posted in the last 24 hours from the authenticating user.
 ResponseList<Status> Twitter.getUserTimeline(int userId)
          Returns the most recent statuses posted in the last 24 hours from the specified userid.
 ResponseList<Status> Twitter.getUserTimeline(int userId, Paging paging)
          Returns the most recent statuses posted in the last 24 hours from the specified screen name.
 ResponseList<Status> Twitter.getUserTimeline(Paging paging)
          Returns the most recent statuses posted in the last 24 hours from the authenticating user.
 ResponseList<Status> Twitter.getUserTimeline(java.lang.String screenName)
          Returns the most recent statuses posted in the last 24 hours from the specified userid.
 ResponseList<Status> Twitter.getUserTimeline(java.lang.String screenName, Paging paging)
          Returns the most recent statuses posted in the last 24 hours from the specified screen name.
 

Methods in twitter4j with parameters of type Status
 void TwitterListener.createdFavorite(Status status)
           
 void TwitterAdapter.createdFavorite(Status status)
           
 void TwitterListener.destroyedFavorite(Status status)
           
 void TwitterAdapter.destroyedFavorite(Status status)
           
 void TwitterListener.destroyedStatus(Status destroyedStatus)
           
 void TwitterAdapter.destroyedStatus(Status destroyedStatus)
           
 void TwitterListener.gotShowStatus(Status status)
           
 void TwitterAdapter.gotShowStatus(Status statuses)
           
 void StatusListener.onStatus(Status status)
           
 void TwitterListener.retweetedStatus(Status retweetedStatus)
           
 void TwitterAdapter.retweetedStatus(Status retweetedStatus)
           
 void TwitterListener.updatedStatus(Status status)
           
 void TwitterAdapter.updatedStatus(Status statuses)
           
 

Method parameters in twitter4j with type arguments of type Status
 void TwitterListener.gotFavorites(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotFavorites(ResponseList<Status> statuses)
           
 void TwitterListener.gotFriendsTimeline(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotFriendsTimeline(ResponseList<Status> statuses)
           
 void TwitterListener.gotHomeTimeline(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotHomeTimeline(ResponseList<Status> statuses)
           
 void TwitterListener.gotMentions(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotMentions(ResponseList<Status> statuses)
           
 void TwitterListener.gotPublicTimeline(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotPublicTimeline(ResponseList<Status> statuses)
           
 void TwitterListener.gotRetweetedByMe(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotRetweetedByMe(ResponseList<Status> statuses)
           
 void TwitterListener.gotRetweetedToMe(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotRetweetedToMe(ResponseList<Status> statuses)
           
 void TwitterListener.gotRetweets(ResponseList<Status> retweets)
           
 void TwitterAdapter.gotRetweets(ResponseList<Status> retweets)
           
 void TwitterListener.gotRetweetsOfMe(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotRetweetsOfMe(ResponseList<Status> statuses)
           
 void TwitterListener.gotUserListStatuses(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotUserListStatuses(ResponseList<Status> statuses)
           
 void TwitterListener.gotUserTimeline(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotUserTimeline(ResponseList<Status> statuses)
           
 

Uses of Status in twitter4j.api
 

Methods in twitter4j.api that return Status
 Status FavoriteMethods.createFavorite(long id)
          Favorites the status specified in the ID parameter as the authenticating user.
 Status FavoriteMethods.destroyFavorite(long id)
          Un-favorites the status specified in the ID parameter as the authenticating user.
 Status StatusMethods.destroyStatus(long statusId)
          Destroys the status specified by the required ID parameter.
 Status StatusMethods.retweetStatus(long statusId)
          Retweets a tweet.
 Status StatusMethods.showStatus(long id)
          Returns a single status, specified by the id parameter.
 Status StatusMethods.updateStatus(StatusUpdate latestStatus)
          Updates the user's status.
 Status StatusMethods.updateStatus(java.lang.String status)
          Updates the user's status.
 Status StatusMethods.updateStatus(java.lang.String status, GeoLocation location)
          Deprecated. use updateStatus(StatusUpdate latestStatus) instead.
 Status StatusMethods.updateStatus(java.lang.String status, long inReplyToStatusId)
          Deprecated. use updateStatus(StatusUpdate latestStatus) instead.
 Status StatusMethods.updateStatus(java.lang.String status, long inReplyToStatusId, GeoLocation location)
          Deprecated. use updateStatus(StatusUpdate latestStatus) instead.
 

Methods in twitter4j.api that return types with arguments of type Status
 ResponseList<Status> FavoriteMethods.getFavorites()
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> FavoriteMethods.getFavorites(int page)
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> FavoriteMethods.getFavorites(java.lang.String id)
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> FavoriteMethods.getFavorites(java.lang.String id, int page)
          Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
 ResponseList<Status> TimelineMethods.getFriendsTimeline()
          Returns the 20 most recent statuses posted in the last 24 hours from the authenticating1 user and that user's friends.
 ResponseList<Status> TimelineMethods.getFriendsTimeline(Paging paging)
          Returns the 20 most recent statuses posted in the last 24 hours from the specified userid.
 ResponseList<Status> TimelineMethods.getHomeTimeline()
          Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends.
 ResponseList<Status> TimelineMethods.getHomeTimeline(Paging paging)
          Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends.
 ResponseList<Status> TimelineMethods.getMentions()
          Returns the 20 most recent mentions (status containing @username) for the authenticating user.
 ResponseList<Status> TimelineMethods.getMentions(Paging paging)
          Returns the 20 most recent mentions (status containing @username) for the authenticating user.
 ResponseList<Status> TimelineMethods.getPublicTimeline()
          Returns the 20 most recent statuses from non-protected users who have set a custom user icon.
 ResponseList<Status> TimelineMethods.getRetweetedByMe()
          Returns the 20 most recent retweets posted by the authenticating user.
 ResponseList<Status> TimelineMethods.getRetweetedByMe(Paging paging)
          Returns the 20 most recent retweets posted by the authenticating user.
 ResponseList<Status> TimelineMethods.getRetweetedToMe()
          Returns the 20 most recent retweets posted by the authenticating user's friends.
 ResponseList<Status> TimelineMethods.getRetweetedToMe(Paging paging)
          Returns the 20 most recent retweets posted by the authenticating user's friends.
 ResponseList<Status> StatusMethods.getRetweets(long statusId)
          Returns up to 100 of the first retweets of a given tweet.
 ResponseList<Status> TimelineMethods.getRetweetsOfMe()
          Returns the 20 most recent tweets of the authenticated user that have been retweeted by others.
 ResponseList<Status> TimelineMethods.getRetweetsOfMe(Paging paging)
          Returns the 20 most recent tweets of the authenticated user that have been retweeted by others.
 ResponseList<Status> ListMethods.getUserListStatuses(java.lang.String listOwnerScreenName, int id, Paging paging)
          Show tweet timeline for members of the specified list.
 ResponseList<Status> TimelineMethods.getUserTimeline()
          Returns the most recent statuses posted in the last 24 hours from the authenticating user.
 ResponseList<Status> TimelineMethods.getUserTimeline(int userId)
          Returns the most recent statuses posted in the last 24 hours from the specified userid.
 ResponseList<Status> TimelineMethods.getUserTimeline(int userId, Paging paging)
          Returns the most recent statuses posted in the last 24 hours from the specified screen name.
 ResponseList<Status> TimelineMethods.getUserTimeline(Paging paging)
          Returns the most recent statuses posted in the last 24 hours from the authenticating user.
 ResponseList<Status> TimelineMethods.getUserTimeline(java.lang.String screenName)
          Returns the most recent statuses posted in the last 24 hours from the specified userid.
 ResponseList<Status> TimelineMethods.getUserTimeline(java.lang.String screenName, Paging paging)
          Returns the most recent statuses posted in the last 24 hours from the specified screen name.
 



Copyright © 2010. All Rights Reserved.