|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Status | |
|---|---|
| twitter4j | |
| twitter4j.api | |
| twitter4j.json | |
| 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. Usage note: The authenticating user must be the author of the specified status. |
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 below. |
Status |
Twitter.updateStatus(StatusUpdate latestStatus)
Updates the authenticating user's status. |
Status |
Twitter.updateStatus(java.lang.String status)
Updates the authenticating user's status. |
Status |
Twitter.updateStatus(java.lang.String status,
GeoLocation location)
Updates the authenticating user's status. |
Status |
Twitter.updateStatus(java.lang.String status,
long inReplyToStatusId)
Updates the authenticating user's status. |
Status |
Twitter.updateStatus(java.lang.String status,
long inReplyToStatusId,
GeoLocation location)
Updates the authenticating 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 by the authenticating user and that user's friends. |
ResponseList<Status> |
Twitter.getFriendsTimeline(Paging paging)
Returns the 20 most recent statuses posted by the authenticating user and that user's friends. |
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.getRetweetedByUser(int userId,
Paging paging)
Returns the 20 most recent retweets posted by the specified user. |
ResponseList<Status> |
Twitter.getRetweetedByUser(java.lang.String screenName,
Paging paging)
Returns the 20 most recent retweets posted by the specified 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.getRetweetedToUser(int userId,
Paging paging)
Returns the 20 most recent retweets posted by users the specified user follows. |
ResponseList<Status> |
Twitter.getRetweetedToUser(java.lang.String screenName,
Paging paging)
Returns the 20 most recent retweets posted by users the specified user follows. |
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> |
RelatedResults.getTweetsFromUser()
Return the 3 or less latest statuses from the user who sent the origin tweet. |
ResponseList<Status> |
RelatedResults.getTweetsWithConversation()
Returns the 8 or less statuses with conversation |
ResponseList<Status> |
RelatedResults.getTweetsWithReply()
Returns the 8 or less statuses with reply. |
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 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
Twitter.getUserTimeline(int userId)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
Twitter.getUserTimeline(int userId,
Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
Twitter.getUserTimeline(Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
Twitter.getUserTimeline(java.lang.String screenName)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
Twitter.getUserTimeline(java.lang.String screenName,
Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. |
| 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 |
SiteStreamsListener.onFavorite(int forUser,
User source,
User target,
Status favoritedStatus)
|
void |
SiteStreamsAdapter.onFavorite(int forUser,
User source,
User target,
Status favoritedStatus)
|
void |
UserStreamListener.onFavorite(User source,
User target,
Status favoritedStatus)
|
void |
UserStreamAdapter.onFavorite(User source,
User target,
Status favoritedStatus)
|
void |
UserStreamListener.onRetweet(User source,
User target,
Status retweetedStatus)
|
void |
UserStreamAdapter.onRetweet(User source,
User target,
Status retweetedStatus)
|
void |
SiteStreamsListener.onStatus(int forUser,
Status status)
|
void |
SiteStreamsAdapter.onStatus(int forUser,
Status status)
|
void |
StatusListener.onStatus(Status status)
|
void |
StatusAdapter.onStatus(Status status)
|
void |
SiteStreamsListener.onUnfavorite(int forUser,
User source,
User target,
Status unfavoritedStatus)
|
void |
SiteStreamsAdapter.onUnfavorite(int forUser,
User source,
User target,
Status unfavoritedStatus)
|
void |
UserStreamListener.onUnfavorite(User source,
User target,
Status unfavoritedStatus)
|
void |
UserStreamAdapter.onUnfavorite(User source,
User target,
Status unfavoritedStatus)
|
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.gotRetweetedByUser(ResponseList<Status> statuses)
|
void |
TwitterAdapter.gotRetweetedByUser(ResponseList<Status> statuses)
|
void |
TwitterListener.gotRetweetedToMe(ResponseList<Status> statuses)
|
void |
TwitterAdapter.gotRetweetedToMe(ResponseList<Status> statuses)
|
void |
TwitterListener.gotRetweetedToUser(ResponseList<Status> statuses)
|
void |
TwitterAdapter.gotRetweetedToUser(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. Usage note: The authenticating user must be the author of the specified status. |
Status |
StatusMethods.retweetStatus(long statusId)
Retweets a tweet. |
Status |
StatusMethods.showStatus(long id)
Returns a single status, specified by the id parameter below. |
Status |
StatusMethods.updateStatus(StatusUpdate latestStatus)
Updates the authenticating user's status. |
Status |
StatusMethods.updateStatus(java.lang.String status)
Updates the authenticating user's status. |
Status |
StatusMethods.updateStatus(java.lang.String status,
GeoLocation location)
Deprecated. use StatusMethods.updateStatus(StatusUpdate) instead. |
Status |
StatusMethods.updateStatus(java.lang.String status,
long inReplyToStatusId)
Deprecated. use StatusMethods.updateStatus(StatusUpdate) instead. |
Status |
StatusMethods.updateStatus(java.lang.String status,
long inReplyToStatusId,
GeoLocation location)
Deprecated. use StatusMethods.updateStatus(StatusUpdate) 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 by the authenticating user and that user's friends. |
ResponseList<Status> |
TimelineMethods.getFriendsTimeline(Paging paging)
Returns the 20 most recent statuses posted by the authenticating user and that user's friends. |
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.getRetweetedByUser(int userId,
Paging paging)
Returns the 20 most recent retweets posted by the specified user. |
ResponseList<Status> |
TimelineMethods.getRetweetedByUser(java.lang.String screenName,
Paging paging)
Returns the 20 most recent retweets posted by the specified 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> |
TimelineMethods.getRetweetedToUser(int userId,
Paging paging)
Returns the 20 most recent retweets posted by users the specified user follows. |
ResponseList<Status> |
TimelineMethods.getRetweetedToUser(java.lang.String screenName,
Paging paging)
Returns the 20 most recent retweets posted by users the specified user follows. |
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 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
TimelineMethods.getUserTimeline(int userId)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
TimelineMethods.getUserTimeline(int userId,
Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
TimelineMethods.getUserTimeline(Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
TimelineMethods.getUserTimeline(java.lang.String screenName)
Returns the 20 most recent statuses posted from the authenticating user. |
ResponseList<Status> |
TimelineMethods.getUserTimeline(java.lang.String screenName,
Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. |
| Uses of Status in twitter4j.json |
|---|
| Methods in twitter4j.json that return Status | |
|---|---|
static Status |
DataObjectFactory.createStatus(java.lang.String rawJSON)
Constructs a Status object from rawJSON string. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||