Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
mumei committed May 19, 2014
1 parent 050599c commit cb6571e
Showing 1 changed file with 64 additions and 64 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,22 +51,22 @@ public interface FriendsFollowersResources {
*/
IDs getFriendsIDs(long userId, long cursor) throws TwitterException;

/**
* Returns an array of numeric IDs for every user the specified user is following.
* <br>This method calls http://api.twitter.com/1.1/friends/ids.json
*
* @param userId Specifies the ID of the user for whom to return the friends list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. The value of count is best thought of as a limit to the number of results to return.<br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection.<br/>
* Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return an array of numeric IDs for every user the specified user is following
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/friends/ids">GET friends/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFriendsIDs(long userId, long cursor,int count) throws TwitterException;
/**
* Returns an array of numeric IDs for every user the specified user is following.
* <br>This method calls http://api.twitter.com/1.1/friends/ids.json
*
* @param userId Specifies the ID of the user for whom to return the friends list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. The value of count is best thought of as a limit to the number of results to return.<br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection.<br/>
* Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return an array of numeric IDs for every user the specified user is following
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/friends/ids">GET friends/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFriendsIDs(long userId, long cursor,int count) throws TwitterException;

/**
* Returns an array of numeric IDs for every user the specified user is following.
Expand All @@ -82,22 +82,22 @@ public interface FriendsFollowersResources {
*/
IDs getFriendsIDs(String screenName, long cursor) throws TwitterException;

/**
* Returns an array of numeric IDs for every user the specified user is following.
* <br>This method calls http://api.twitter.com/1.1/friends/ids.json
*
* @param screenName Specifies the screen name of the user for whom to return the friends list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. The value of count is best thought of as a limit to the number of results to return.<br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection.<br/>
* Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return an array of numeric IDs for every user the specified user is following
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/friends/ids">GET friends/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFriendsIDs(String screenName, long cursor,int count) throws TwitterException;
/**
* Returns an array of numeric IDs for every user the specified user is following.
* <br>This method calls http://api.twitter.com/1.1/friends/ids.json
*
* @param screenName Specifies the screen name of the user for whom to return the friends list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. The value of count is best thought of as a limit to the number of results to return.<br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection.<br/>
* Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return an array of numeric IDs for every user the specified user is following
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/friends/ids">GET friends/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFriendsIDs(String screenName, long cursor,int count) throws TwitterException;

/**
* Returns an array of numeric IDs for every user the specified user is followed by.
Expand Down Expand Up @@ -126,22 +126,22 @@ public interface FriendsFollowersResources {
*/
IDs getFollowersIDs(long userId, long cursor) throws TwitterException;

/**
* Returns an array of numeric IDs for every user the specified user is followed by.
* <br>This method calls http://api.twitter.com/1.1/followers/ids.json
*
* @param userId Specifies the ID of the user for whom to return the followers list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. <br/>
* The value of count is best thought of as a limit to the number of results to return. <br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection. Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return The ID or screen_name of the user to retrieve the friends ID list for.
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/followers/ids">GET followers/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFollowersIDs(long userId, long cursor, int count) throws TwitterException;
/**
* Returns an array of numeric IDs for every user the specified user is followed by.
* <br>This method calls http://api.twitter.com/1.1/followers/ids.json
*
* @param userId Specifies the ID of the user for whom to return the followers list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. <br/>
* The value of count is best thought of as a limit to the number of results to return. <br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection. Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return The ID or screen_name of the user to retrieve the friends ID list for.
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/followers/ids">GET followers/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFollowersIDs(long userId, long cursor, int count) throws TwitterException;

/**
* Returns an array of numeric IDs for every user the specified user is followed by.
Expand All @@ -157,22 +157,22 @@ public interface FriendsFollowersResources {
*/
IDs getFollowersIDs(String screenName, long cursor) throws TwitterException;

/**
* Returns an array of numeric IDs for every user the specified user is followed by.
* <br>This method calls http://api.twitter.com/1.1/followers/ids.json
*
* @param screenName Specifies the screen name of the user for whom to return the followers list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. <br/>
* The value of count is best thought of as a limit to the number of results to return. <br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection. Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return The ID or screen_name of the user to retrieve the friends ID list for.
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/followers/ids">GET followers/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFollowersIDs(String screenName, long cursor,int count) throws TwitterException;
/**
* Returns an array of numeric IDs for every user the specified user is followed by.
* <br>This method calls http://api.twitter.com/1.1/followers/ids.json
*
* @param screenName Specifies the screen name of the user for whom to return the followers list.
* @param cursor Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. <br/>
* To begin paging provide a value of -1 as the cursor. The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.
* @param count Specifies the number of IDs attempt retrieval of, up to a maximum of 5,000 per distinct request. <br/>
* The value of count is best thought of as a limit to the number of results to return. <br/>
* When using the count parameter with this method, it is wise to use a consistent count value across all requests to the same user's collection. Usage of this parameter is encouraged in environments where all 5,000 IDs constitutes too large of a response.
* @return The ID or screen_name of the user to retrieve the friends ID list for.
* @throws TwitterException when Twitter service or network is unavailable
* @see <a href="https://dev.twitter.com/docs/api/1.1/get/followers/ids">GET followers/ids | Twitter Developers</a>
* @since Twitter4J 4.0.2
*/
IDs getFollowersIDs(String screenName, long cursor,int count) throws TwitterException;


/**
Expand Down

0 comments on commit cb6571e

Please sign in to comment.