public interface SavedSearchesResources
| Modifier and Type | Method and Description | 
|---|---|
SavedSearch | 
createSavedSearch(java.lang.String query)
Creates a saved search for the authenticated user. 
 | 
SavedSearch | 
destroySavedSearch(int id)
Destroys a saved search for the authenticated user. 
 | 
ResponseList<SavedSearch> | 
getSavedSearches()
Returns the authenticated user's saved search queries. 
 | 
SavedSearch | 
showSavedSearch(int id)
Retrieve the data for a saved search owned by the authenticating user specified by the given id. 
 | 
ResponseList<SavedSearch> getSavedSearches() throws TwitterException
TwitterException - when Twitter service or network is unavailableSavedSearch showSavedSearch(int id) throws TwitterException
id - The id of the saved search to be retrieved.TwitterException - when Twitter service or network is unavailableSavedSearch createSavedSearch(java.lang.String query) throws TwitterException
query - the query stringTwitterException - when Twitter service or network is unavailableSavedSearch destroySavedSearch(int id) throws TwitterException
id - The id of the saved search to be deleted.TwitterException - when Twitter service or network is unavailable