Uses of Class
twitter4j.ResponseList

Packages that use ResponseList
twitter4j   
twitter4j.api   
 

Uses of ResponseList in twitter4j
 

Subclasses of ResponseList in twitter4j
 class PagableResponseList<T extends TwitterResponse>
          ResponseList with cursor support.
 

Methods in twitter4j that return ResponseList
static ResponseList<Category> CategoryJSONImpl.createCategoriesList(twitter4j.internal.http.HttpResponse res)
           
static ResponseList<Category> CategoryJSONImpl.createCategoriesList(twitter4j.internal.org.json.JSONArray array, twitter4j.internal.http.HttpResponse res)
           
 ResponseList<Location> Twitter.getAvailableTrends()
          Returns the locations that Twitter has trending topic information for.
 ResponseList<Location> Twitter.getAvailableTrends(GeoLocation location)
          Returns the sorted locations that Twitter has trending topic information for.
 ResponseList<User> Twitter.getBlockingUsers()
          Returns a list of user objects that the authenticating user is blocking.
 ResponseList<User> Twitter.getBlockingUsers(int page)
          Returns a list of user objects that the authenticating user is blocking.
 ResponseList<DirectMessage> Twitter.getDirectMessages()
          Returns a list of the direct messages sent to the authenticating user.
 ResponseList<DirectMessage> Twitter.getDirectMessages(Paging paging)
          Returns a list of the direct messages sent to the authenticating user.
 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<Place> Twitter.getNearbyPlaces(GeoQuery query)
          Search for places (cities and neighborhoods) that can be attached to a statuses/update.
 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<DirectMessage> Twitter.getSentDirectMessages()
          Returns a list of the direct messages sent by the authenticating user.
 ResponseList<DirectMessage> Twitter.getSentDirectMessages(Paging paging)
          Returns a list of the direct messages sent by the authenticating user.
 ResponseList<Category> Twitter.getSuggestedUserCategories()
          Access to Twitter's suggested user list.
 ResponseList<Status> Twitter.getUserListStatuses(java.lang.String listOwnerScreenName, int id, Paging paging)
          Show tweet timeline for members of the specified list.
 ResponseList<User> Twitter.getUserSuggestions(java.lang.String categorySlug)
          Access the users in a given category of the Twitter suggested user 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.
 ResponseList<User> Twitter.lookupUsers(int[] ids)
          Return up to 20 users worth of extended information, specified by either ID.
 ResponseList<User> Twitter.lookupUsers(java.lang.String[] screenNames)
          Return up to 20 users worth of extended information, specified by screen name.
 ResponseList<Place> Twitter.reverseGeoCode(GeoQuery query)
          Search for places (cities and neighborhoods) that can be attached to a statuses/update.
 ResponseList<User> Twitter.searchUsers(java.lang.String query, int page)
          Run a search for users similar to Find People button on Twitter.com; the same results returned by people search on Twitter.com will be returned by using this API (about being listed in the People Search).
 

Methods in twitter4j with parameters of type ResponseList
 void TwitterListener.gotAvailableTrends(ResponseList<Location> locations)
           
 void TwitterAdapter.gotAvailableTrends(ResponseList<Location> locations)
           
 void TwitterListener.gotBlockingUsers(ResponseList<User> blockingUsers)
           
 void TwitterAdapter.gotBlockingUsers(ResponseList<User> blockingUsers)
           
 void TwitterListener.gotDirectMessages(ResponseList<DirectMessage> messages)
           
 void TwitterAdapter.gotDirectMessages(ResponseList<DirectMessage> messages)
           
 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.gotNearByPlaces(ResponseList<Place> places)
           
 void TwitterAdapter.gotNearByPlaces(ResponseList<Place> places)
           
 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.gotReverseGeoCode(ResponseList<Place> places)
           
 void TwitterAdapter.gotReverseGeoCode(ResponseList<Place> places)
           
 void TwitterListener.gotSentDirectMessages(ResponseList<DirectMessage> messages)
           
 void TwitterAdapter.gotSentDirectMessages(ResponseList<DirectMessage> messages)
           
 void TwitterListener.gotSuggestedUserCategories(ResponseList<Category> category)
           
 void TwitterAdapter.gotSuggestedUserCategories(ResponseList<Category> categories)
           
 void TwitterListener.gotUserListStatuses(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotUserListStatuses(ResponseList<Status> statuses)
           
 void TwitterListener.gotUserSuggestions(ResponseList<User> users)
           
 void TwitterAdapter.gotUserSuggestions(ResponseList<User> users)
           
 void TwitterListener.gotUserTimeline(ResponseList<Status> statuses)
           
 void TwitterAdapter.gotUserTimeline(ResponseList<Status> statuses)
           
 void TwitterListener.lookedupUsers(ResponseList<User> users)
           
 void TwitterAdapter.lookedupUsers(ResponseList<User> users)
           
 void TwitterListener.searchedUser(ResponseList<User> userList)
           
 void TwitterAdapter.searchedUser(ResponseList<User> userList)
           
 

Uses of ResponseList in twitter4j.api
 

Methods in twitter4j.api that return ResponseList
 ResponseList<Location> LocalTrendsMethods.getAvailableTrends()
          Returns the locations that Twitter has trending topic information for.
 ResponseList<Location> LocalTrendsMethods.getAvailableTrends(GeoLocation location)
          Returns the sorted locations that Twitter has trending topic information for.
 ResponseList<User> BlockMethods.getBlockingUsers()
          Returns a list of user objects that the authenticating user is blocking.
 ResponseList<User> BlockMethods.getBlockingUsers(int page)
          Returns a list of user objects that the authenticating user is blocking.
 ResponseList<DirectMessage> DirectMessageMethods.getDirectMessages()
          Returns a list of the direct messages sent to the authenticating user.
 ResponseList<DirectMessage> DirectMessageMethods.getDirectMessages(Paging paging)
          Returns a list of the direct messages sent to the authenticating user.
 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<Place> GeoMethods.getNearbyPlaces(GeoQuery query)
          Search for places (cities and neighborhoods) that can be attached to a statuses/update.
 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<DirectMessage> DirectMessageMethods.getSentDirectMessages()
          Returns a list of the direct messages sent by the authenticating user.
 ResponseList<DirectMessage> DirectMessageMethods.getSentDirectMessages(Paging paging)
          Returns a list of the direct messages sent by the authenticating user.
 ResponseList<Category> UserMethods.getSuggestedUserCategories()
          Access to Twitter's suggested user list.
 ResponseList<Status> ListMethods.getUserListStatuses(java.lang.String listOwnerScreenName, int id, Paging paging)
          Show tweet timeline for members of the specified list.
 ResponseList<User> UserMethods.getUserSuggestions(java.lang.String categorySlug)
          Access the users in a given category of the Twitter suggested user 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.
 ResponseList<User> UserMethods.lookupUsers(int[] ids)
          Return up to 20 users worth of extended information, specified by either ID.
 ResponseList<User> UserMethods.lookupUsers(java.lang.String[] screenNames)
          Return up to 20 users worth of extended information, specified by screen name.
 ResponseList<Place> GeoMethods.reverseGeoCode(GeoQuery query)
          Search for places (cities and neighborhoods) that can be attached to a statuses/update.
 ResponseList<User> UserMethods.searchUsers(java.lang.String query, int page)
          Run a search for users similar to Find People button on Twitter.com; the same results returned by people search on Twitter.com will be returned by using this API (about being listed in the People Search).
 



Copyright © 2010. All Rights Reserved.