Class Int64Values
Abstraction over an array of longs. 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 LuceneNote
This API is for internal purposes only and might change in incompatible ways in the next release.
Inheritance
Int64Values
Inherited Members
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public abstract class Int64Values : NumericDocValues
Methods
Get(int)
Get value at idx
.
Declaration
public override long Get(int idx)
Parameters
Type | Name | Description |
---|---|---|
int | idx |
Returns
Type | Description |
---|---|
long |
Overrides
Get(long)
Get value at index
.
Declaration
public abstract long Get(long index)
Parameters
Type | Name | Description |
---|---|---|
long | index |
Returns
Type | Description |
---|---|
long |