|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Query | |
---|---|
com.twitterapime.rest | |
com.twitterapime.search |
Uses of Query in com.twitterapime.rest |
---|
Methods in com.twitterapime.rest with parameters of type Query | |
---|---|
java.lang.String[] |
UserAccountManager.getFollowersID(Query query)
FriendshipManager.getFollowersID(Query) |
java.lang.String[] |
FriendshipManager.getFollowersID(Query query)
Get the followers ID list of verified user. |
java.lang.String[] |
FriendshipManager.getFollowersID(UserAccount user,
Query query)
Get the followers ID list of a given user. |
java.lang.String[] |
UserAccountManager.getFriendsID(Query query)
FriendshipManager.getFriendsID(Query) |
java.lang.String[] |
FriendshipManager.getFriendsID(Query query)
Get the friends ID list of verified user. |
java.lang.String[] |
FriendshipManager.getFriendsID(UserAccount user,
Query query)
Get the friends ID list of a given user. |
void |
Timeline.startGetDirectMessages(Query q,
boolean received,
SearchDeviceListener l)
Get all Direct Messages from/to the authenticating user according to given filter. |
void |
Timeline.startGetHomeTweets(Query q,
SearchDeviceListener l)
Get most recent tweets, including retweets, posted by the authenticating user and the user's friends according to given filter. |
void |
Timeline.startGetMentions(Query q,
SearchDeviceListener l)
Get most recent mentions (status containing @username) for the authenticating user according to given filter. |
void |
Timeline.startGetUserTweets(Query q,
SearchDeviceListener l)
Get most recent tweets posted from the authenticating user and that user's friends according to given filter. |
Uses of Query in com.twitterapime.search |
---|
Methods in com.twitterapime.search that return Query | |
---|---|
static Query |
QueryComposer.append(Query q1,
Query q2)
Append a query to another one. |
static Query |
QueryComposer.containAll(java.lang.String words)
Create a query to search for tweets that contain all the given words. |
static Query |
QueryComposer.containAny(java.lang.String words)
Create a query to search for tweets that contain at least one of the given words. |
static Query |
QueryComposer.containExact(java.lang.String phrase)
Create a query to search for tweets that exactly match the given phrase, e.g., "The sky is blue.". |
static Query |
QueryComposer.containHashtag(java.lang.String tag)
Create a query to search for tweets that contain the given hashtag, e.g., "twitter". |
static Query |
QueryComposer.containLink()
Create a query to search for tweets that contain link(s). |
static Query |
QueryComposer.containNone(java.lang.String words)
Create a query to search for tweets that do not contain none of the given words. |
static Query |
QueryComposer.containQuestion()
Create a query to search for tweets that contain a question "?". |
static Query |
QueryComposer.count(int count)
Create a query to define the tweet count to be returned. |
static Query |
QueryComposer.from(java.lang.String person)
Create a query to search for tweets that were sent by a given person, e.g., "twitteruser". |
static Query |
QueryComposer.geocode(java.lang.String lat,
java.lang.String lon,
int rad,
java.lang.String unit)
Create a query to search for tweets that were sent from a user that was located within a given radius of the given latitude/longitude. |
static Query |
QueryComposer.lang(java.lang.String lang)
Create a query to search for tweets that are from given language, e.g., "en". |
static Query |
QueryComposer.maxID(java.lang.String id)
Create a query to search for tweets that are lesser than or equal to a given ID, e.g., "123549789". |
static Query |
QueryComposer.negativeAttitude()
Create a query to search for tweets that contain a negative attitude ":(". |
static Query |
QueryComposer.page(int number)
Create a query to define the number of tweets page to be returned. |
static Query |
QueryComposer.paginate(int resultCount,
int pageNumber)
Create a query to paginate the results to be returned. |
static Query |
QueryComposer.positiveAttitude()
Create a query to search for tweets that contain a positive attitude ":)". |
static Query |
QueryComposer.reference(java.lang.String person)
Create a query to search for tweets that reference a given person, e.g., "twitteruser". |
static Query |
QueryComposer.resultCount(int count)
Create a query to define the tweet count to be returned. |
static Query |
QueryComposer.since(java.util.Date date)
Create a query to search for tweets that were sent since a given date, e.g., "01/01/2009". |
static Query |
QueryComposer.sinceID(java.lang.String id)
Create a query to search for tweets that are greater than a given ID, e.g., "123549789". |
static Query |
QueryComposer.source(java.lang.String appName)
Create a query to search for tweets that were sent from a given source application, e.g., "web". |
static Query |
QueryComposer.to(java.lang.String person)
Create a query to search for tweets that were sent to a given person, e.g., "twitteruser". |
static Query |
QueryComposer.until(java.util.Date date)
Create a query to search for tweets that were sent until a given date, e.g., "01/10/2009". |
Methods in com.twitterapime.search with parameters of type Query | |
---|---|
static Query |
QueryComposer.append(Query q1,
Query q2)
Append a query to another one. |
Tweet[] |
SearchDevice.searchTweets(Query query)
Search for tweets that match the given query. |
void |
SearchDevice.startSearchTweets(Query query,
SearchDeviceListener listener)
Search for tweets that match the given query. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |