Spring Social Twitter

org.springframework.social.twitter.api
Class SearchMetadata

java.lang.Object
  extended by org.springframework.social.twitter.api.SearchMetadata

public class SearchMetadata
extends java.lang.Object

Represents the metadata associated with a search query for the use of retrieving further results via Twitter's search API

Author:
Jeremy Appel

Constructor Summary
SearchMetadata(long max_id, long since_id)
           
 
Method Summary
 long getMax_id()
          The maximum ID of any tweet in the search results.
 long getSince_id()
          The value of the sinceId parameter specified in the search.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SearchMetadata

public SearchMetadata(long max_id,
                      long since_id)
Method Detail

getMax_id

public long getMax_id()
The maximum ID of any tweet in the search results. Typically the ID of the most recent tweet in the search results.


getSince_id

public long getSince_id()
The value of the sinceId parameter specified in the search. If not specified, it will be zero (not the minimum ID of the tweets in the search results).


Spring Social Twitter