FieldDoc.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:3k
源码类别:

搜索引擎

开发平台:

C#

  1. /*
  2.  * Copyright 2004 The Apache Software Foundation
  3.  * 
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  * 
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  * 
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. using System;
  17. namespace Lucene.Net.Search
  18. {
  19. /// <summary> Expert: A ScoreDoc which also contains information about
  20. /// how to sort the referenced document.  In addition to the
  21. /// document number and score, this object contains an array
  22. /// of values for the document from the field(s) used to sort.
  23. /// For example, if the sort criteria was to sort by fields
  24. /// "a", "b" then "c", the <code>fields</code> object array
  25. /// will have three elements, corresponding respectively to
  26. /// the term values for the document in fields "a", "b" and "c".
  27. /// The class of each element in the array will be either
  28. /// Integer, Float or String depending on the type of values
  29. /// in the terms of each field.
  30. /// 
  31. /// <p>Created: Feb 11, 2004 1:23:38 PM
  32. /// 
  33. /// </summary>
  34. /// <author>   Tim Jones (Nacimiento Software)
  35. /// </author>
  36. /// <since>   lucene 1.4
  37. /// </since>
  38. /// <version>  $Id: FieldDoc.java 164865 2005-04-26 19:30:20Z cutting $
  39. /// </version>
  40. /// <seealso cref="ScoreDoc">
  41. /// </seealso>
  42. /// <seealso cref="TopFieldDocs">
  43. /// </seealso>
  44. [Serializable]
  45. public class FieldDoc : ScoreDoc
  46. {
  47. /// <summary>Expert: The values which are used to sort the referenced document.
  48. /// The order of these will match the original sort criteria given by a
  49. /// Sort object.  Each Object will be either an Integer, Float or String,
  50. /// depending on the type of values in the terms of the original field.
  51. /// </summary>
  52. /// <seealso cref="Sort">
  53. /// </seealso>
  54. /// <seealso cref="Searcher.Search(Query,Filter,int,Sort)">
  55. /// </seealso>
  56. public System.IComparable[] fields;
  57. /// <summary>Expert: Creates one of these objects with empty sort information. </summary>
  58. public FieldDoc(int doc, float score) : base(doc, score)
  59. {
  60. }
  61. /// <summary>Expert: Creates one of these objects with the given sort information. </summary>
  62. public FieldDoc(int doc, float score, System.IComparable[] fields) : base(doc, score)
  63. {
  64. this.fields = fields;
  65. }
  66. }
  67. }