Back to project page PicPosterComplete.
The source code is released under:
Apache License
If you think the Android project PicPosterComplete listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ca.ualberta.cs.picposter.network; // w w w . jav a 2 s . c o m import java.util.ArrayList; import java.util.Collection; /** * Represents a search response from ElasticSearch. * Taken from https://github.com/rayzhangcl/ESDemo */ public class ElasticSearchSearchResponse<T> { int took; boolean timed_out; transient Object _shards; Hits<T> hits; boolean exists; public Collection<ElasticSearchResponse<T>> getHits() { return hits.getHits(); } public Collection<T> getSources() { Collection<T> out = new ArrayList<T>(); for (ElasticSearchResponse<T> essrt : getHits()) { out.add( essrt.getSource() ); } return out; } public String toString() { return (super.toString() + ":" + took + "," + _shards + "," + exists + "," + hits); } }