Uses of Interface
twitter4j.IDs

Packages that use IDs
twitter4j   
twitter4j.api   
twitter4j.json   
 

Uses of IDs in twitter4j
 

Methods in twitter4j that return IDs
 IDs Twitter.getBlockingUsersIDs()
          Returns an array of numeric user ids the authenticating user is blocking.
 IDs Twitter.getFollowersIDs()
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs Twitter.getFollowersIDs(int userId)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs Twitter.getFollowersIDs(int userId, long cursor)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs Twitter.getFollowersIDs(long cursor)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs Twitter.getFollowersIDs(java.lang.String screenName)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs Twitter.getFollowersIDs(java.lang.String screenName, long cursor)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs Twitter.getFriendsIDs()
          Returns an array of numeric IDs for every user the authenticating user is following.
 IDs Twitter.getFriendsIDs(int userId)
          Returns an array of numeric IDs for every user the specified user is following.
all IDs are attempted to be returned, but large sets of IDs will likely fail with timeout errors.
 IDs Twitter.getFriendsIDs(int userId, long cursor)
          Returns an array of numeric IDs for every user the specified user is following.
 IDs Twitter.getFriendsIDs(long cursor)
          Returns an array of numeric IDs for every user the authenticating user is following.
 IDs Twitter.getFriendsIDs(java.lang.String screenName)
          Returns an array of numeric IDs for every user the specified user is following.
 IDs Twitter.getFriendsIDs(java.lang.String screenName, long cursor)
          Returns an array of numeric IDs for every user the specified user is following.
 IDs Twitter.getIncomingFriendships(long cursor)
          Returns an array of numeric IDs for every user who has a pending request to follow the authenticating user.
 IDs Twitter.getOutgoingFriendships(long cursor)
          Returns an array of numeric IDs for every protected user for whom the authenticating user has a pending follow request.
 IDs Twitter.getRetweetedByIDs(long statusId)
          Show user ids of up to 100 users who retweeted the status represented by id
This method calls http://api.twitter.com/1/statuses/:id/retweeted_by/ids.format
 IDs Twitter.getRetweetedByIDs(long statusId, Paging paging)
          Show user ids of up to 100 users who retweeted the status.
 

Methods in twitter4j with parameters of type IDs
 void TwitterListener.gotBlockingUsersIDs(IDs blockingUsersIDs)
           
 void TwitterAdapter.gotBlockingUsersIDs(IDs blockingUsersIDs)
           
 void TwitterListener.gotFollowersIDs(IDs ids)
           
 void TwitterAdapter.gotFollowersIDs(IDs ids)
           
 void TwitterListener.gotFriendsIDs(IDs ids)
           
 void TwitterAdapter.gotFriendsIDs(IDs ids)
           
 void TwitterListener.gotIncomingFriendships(IDs ids)
           
 void TwitterAdapter.gotIncomingFriendships(IDs ids)
           
 void TwitterListener.gotOutgoingFriendships(IDs ids)
           
 void TwitterAdapter.gotOutgoingFriendships(IDs ids)
           
 void TwitterListener.gotRetweetedByIDs(IDs ids)
           
 void TwitterAdapter.gotRetweetedByIDs(IDs ids)
           
 

Uses of IDs in twitter4j.api
 

Methods in twitter4j.api that return IDs
 IDs BlockMethods.getBlockingUsersIDs()
          Returns an array of numeric user ids the authenticating user is blocking.
 IDs FriendsFollowersMethods.getFollowersIDs()
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs FriendsFollowersMethods.getFollowersIDs(int userId)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs FriendsFollowersMethods.getFollowersIDs(int userId, long cursor)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs FriendsFollowersMethods.getFollowersIDs(long cursor)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs FriendsFollowersMethods.getFollowersIDs(java.lang.String screenName)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs FriendsFollowersMethods.getFollowersIDs(java.lang.String screenName, long cursor)
          Returns an array of numeric IDs for every user the specified user is followed by.
 IDs FriendsFollowersMethods.getFriendsIDs()
          Returns an array of numeric IDs for every user the authenticating user is following.
 IDs FriendsFollowersMethods.getFriendsIDs(int userId)
          Returns an array of numeric IDs for every user the specified user is following.
all IDs are attempted to be returned, but large sets of IDs will likely fail with timeout errors.
 IDs FriendsFollowersMethods.getFriendsIDs(int userId, long cursor)
          Returns an array of numeric IDs for every user the specified user is following.
 IDs FriendsFollowersMethods.getFriendsIDs(long cursor)
          Returns an array of numeric IDs for every user the authenticating user is following.
 IDs FriendsFollowersMethods.getFriendsIDs(java.lang.String screenName)
          Returns an array of numeric IDs for every user the specified user is following.
 IDs FriendsFollowersMethods.getFriendsIDs(java.lang.String screenName, long cursor)
          Returns an array of numeric IDs for every user the specified user is following.
 IDs FriendshipMethods.getIncomingFriendships(long cursor)
          Returns an array of numeric IDs for every user who has a pending request to follow the authenticating user.
 IDs FriendshipMethods.getOutgoingFriendships(long cursor)
          Returns an array of numeric IDs for every protected user for whom the authenticating user has a pending follow request.
 IDs StatusMethods.getRetweetedByIDs(long statusId)
          Show user ids of up to 100 users who retweeted the status represented by id
This method calls http://api.twitter.com/1/statuses/:id/retweeted_by/ids.format
 IDs StatusMethods.getRetweetedByIDs(long statusId, Paging paging)
          Deprecated. use StatusMethods.getRetweetedByIDs(long) instead.
 

Uses of IDs in twitter4j.json
 

Methods in twitter4j.json that return IDs
static IDs DataObjectFactory.createIDs(java.lang.String rawJSON)
          Constructs a IDs object from rawJSON string.
 



Copyright © 2011. All Rights Reserved.