| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- * $Id$
- */
- package org.sphx.api;
- /**
- * Search result set.
- *
- * Includes retrieved matches array, status code and error/warning messages,
- * query stats, and per-word stats.
- */
- public class SphinxResult
- {
- /** Full-text field namess. */
- public String[] fields;
- /** Attribute names. */
- public String[] attrNames;
- /** Attribute types (refer to SPH_ATTR_xxx constants in SphinxClient). */
- public int[] attrTypes;
- /** Retrieved matches. */
- public SphinxMatch[] matches;
- /** Total matches in this result set. */
- public int total;
- /** Total matches found in the index(es). */
- public int totalFound;
- /** Elapsed time (as reported by searchd), in seconds. */
- public float time;
- /** Per-word statistics. */
- public SphinxWordInfo[] words;
- /** Warning message, if any. */
- public String warning = null;
- /** Error message, if any. */
- public String error = null;
- /** Query status (refer to SEARCHD_xxx constants in SphinxClient). */
- private int status = -1;
- /** Trivial constructor, initializes an empty result set. */
- public SphinxResult()
- {
- this.attrNames = new String[0];
- this.matches = new SphinxMatch[0];;
- this.words = new SphinxWordInfo[0];
- this.fields = new String[0];
- this.attrTypes = new int[0];
- }
- /** Get query status. */
- public int getStatus()
- {
- return status;
- }
- /** Set query status (accessible from API package only). */
- void setStatus ( int status )
- {
- this.status = status;
- }
- }
- /*
- * $Id$
- */
|