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; /*from w ww .j a v a 2 s .c o m*/ import java.util.Collection; /** * Represents part of a response from ElasticSearch. * Taken from https://github.com/rayzhangcl/ESDemo */ public class Hits<T> { int total; double max_score; Collection<ElasticSearchResponse<T>> hits; public Collection<ElasticSearchResponse<T>> getHits() { return hits; } public String toString() { return (super.toString()+","+total+","+max_score+","+hits); } }