SphinxWordInfo.java 313 B

12345678910111213141516171819
  1. package org.sphx.api;
  2. /**
  3. * Sphinx result word info.
  4. * Can be found in SphinxResult.words Map
  5. */
  6. public class SphinxWordInfo
  7. {
  8. public String word;
  9. public int docs;
  10. public int hits;
  11. public SphinxWordInfo(String word, int docs, int hits)
  12. {
  13. this.word = word;
  14. this.docs = docs;
  15. this.hits = hits;
  16. }
  17. }