Class NumericDocValuesField
Field that stores a per-document System.Int64 value for scoring, sorting or value retrieval. Here's an example usage:
    document.Add(new NumericDocValuesField(name, 22L));If you also need to store the value, you should add a separate StoredField instance.
Inheritance
System.Object
    
    NumericDocValuesField
      
      
      
      
      
      
      
  Implements
Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
  Namespace: Lucene.Net.Documents
Assembly: Lucene.Net.dll
Syntax
public class NumericDocValuesField : Field, IIndexableFieldConstructors
| Improve this Doc View SourceNumericDocValuesField(String, Int64)
Creates a new DocValues field with the specified 64-bit System.Int64 value
Declaration
public NumericDocValuesField(string name, long value)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | field name | 
| System.Int64 | value | 64-bit System.Int64 value | 
Exceptions
| Type | Condition | 
|---|---|
| System.ArgumentNullException | if the field  | 
Fields
| Improve this Doc View SourceTYPE
Type for numeric DocValues.
Declaration
public static readonly FieldType TYPEField Value
| Type | Description | 
|---|---|
| FieldType |