Term.cs :  » Search-Engines » dotLucene » Lucene » Net » Index » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Search Engines » dotLucene 
dotLucene » Lucene » Net » Index » Term.cs
/*
 * Copyright 2004 The Apache Software Foundation
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

using System;

namespace Lucene.Net.Index{
  
  /// <summary>A Term represents a word from text.  This is the unit of search.  It is
  /// composed of two elements, the text of the word, as a string, and the name of
  /// the field that the text occured in, an interned string.
  /// Note that terms may represent more than words from text fields, but also
  /// things like dates, email addresses, urls, etc.  
  /// </summary>
  
  [Serializable]
  public sealed class Term : System.IComparable
  {
    internal System.String field;
    public /*internal*/ System.String text;
    
    /// <summary>Constructs a Term with the given field and text. </summary>
    public Term(System.String fld, System.String txt) : this(fld, txt, true)
    {
    }
    internal Term(System.String fld, System.String txt, bool intern)
    {
      field = intern ? String.Intern(fld) : fld; // field names are interned
      text = txt; // unless already known to be
    }
    
    /// <summary>Returns the field of this term, an interned string.   The field indicates
    /// the part of a document which this term came from. 
    /// </summary>
    public System.String Field()
    {
      return field;
    }
    
    /// <summary>Returns the text of this term.  In the case of words, this is simply the
    /// text of the word.  In the case of dates and other types, this is an
    /// encoding of the object as a string.  
    /// </summary>
    public System.String Text()
    {
      return text;
    }
    
    /// <summary> Optimized construction of new Terms by reusing same field as this Term
    /// - avoids field.intern() overhead 
    /// </summary>
    /// <param name="text">The text of the new term (field is implicitly same as this Term instance)
    /// </param>
    /// <returns> A new Term
    /// </returns>
    public Term CreateTerm(System.String text)
    {
      return new Term(field, text, false);
    }
    
    /// <summary>Compares two terms, returning true iff they have the same
    /// field and text. 
    /// </summary>
    public  override bool Equals(System.Object o)
    {
      if (o == null)
        return false;
      Term other = (Term) o;
      return field == other.field && text.Equals(other.text);
    }
    
    /// <summary>Combines the hashCode() of the field and the text. </summary>
    public override int GetHashCode()
    {
      return field.GetHashCode() + text.GetHashCode();
    }
    
    public int CompareTo(System.Object other)
    {
      return CompareTo((Term) other);
    }
    
    /// <summary>Compares two terms, returning a negative integer if this
    /// term belongs before the argument, zero if this term is equal to the
    /// argument, and a positive integer if this term belongs after the argument.
    /// The ordering of terms is first by field, then by text.
    /// </summary>
    public int CompareTo(Term other)
    {
      if (field == other.field)
      // fields are interned
        return String.CompareOrdinal(text, other.text);
      else
        return String.CompareOrdinal(field, other.field);
    }
    
    /// <summary>Resets the field and text of a Term. </summary>
    internal void  Set(System.String fld, System.String txt)
    {
      field = fld;
      text = txt;
    }
    
    public override System.String ToString()
    {
      return field + ":" + text;
    }
    
    private void  ReadObject(System.IO.BinaryReader in_Renamed)
    {
      // This function is private and is never been called, so this may not be a port issue.          // {{Aroush-1.4.3}}
            // 'java.io.ObjectInputStream.defaultReadObject' was not converted                              // {{Aroush-1.4.3}}
      // in_Renamed.defaultReadObject();                                                              // {{Aroush-1.4.3}}
      field = String.Intern(field);
    }
    
        // {{Aroush-1.4.3: or is this method is what we want (vs. the above)?!!
        private void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
        {
            info.AddValue("field", field);
            info.AddValue("text", text);
        }
        // Aroush-1.4.3}}
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.