Class Int64Values
Abstraction over an array of System.Int64s. This class extends NumericDocValues so that we don't need to add another level of abstraction every time we want eg. to use the PackedInt32s utility classes to represent a NumericDocValues instance.
NOTE: This was LongValues in Lucene
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Inheritance
System.Object
Int64Values
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)
System.Object.ToString()
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public abstract class Int64Values : NumericDocValues
Methods
| Improve this Doc View SourceGet(Int32)
Get value at idx
.
Declaration
public override long Get(int idx)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | idx |
Returns
Type | Description |
---|---|
System.Int64 |
Overrides
| Improve this Doc View SourceGet(Int64)
Get value at index
.
Declaration
public abstract long Get(long index)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | index |
Returns
Type | Description |
---|---|
System.Int64 |