SortedNumericDocValuesField
Field that stores a per-document long values for scoring, sorting or value retrieval. Here's an example usage:
document.add(new SortedNumericDocValuesField(name, 5L)); document.add(new SortedNumericDocValuesField(name, 14L));*
Note that if you want to encode doubles or floats with proper sort order, you will need to encode them with org.gnit.lucenekmp.util.NumericUtils:
document.add(new SortedNumericDocValuesField(name, NumericUtils.floatToSortableInt(-5.3f)));*
If you also need to store the value, you should add a separate StoredField instance.
Functions
Non-null if this field has a binary value
Returns the FieldType for this field.
Describes how this field should be inverted. This must return a non-null value if the field indexes terms and postings.
Non-null if this field has a numeric value
The value of the field as a Reader, or null. If null, the String value or binary value is used. Exactly one of stringValue(), readerValue(), and binaryValue() must be set.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. See .setStringValue.
Expert: change the value of this field. This can be used during indexing to re-use a single Field instance to improve indexing speed by avoiding GC cost of new'ing and reclaiming Field instances. Typically a single Document instance is re-used as well. This helps most on small documents.
Expert: sets the token stream to be used for indexing.
Stored value. This method is called to populate stored fields and must return a non-null value if the field stored.
The value of the field as a String, or null. If null, the Reader value or binary value is used. Exactly one of stringValue(), readerValue(), and binaryValue() must be set.
Creates the TokenStream used for indexing this field. If appropriate, implementations should use the given Analyzer to create the TokenStreams.
The TokenStream for this field to be used when indexing, or null. If null, the Reader value or String value is analyzed to produce the indexed tokens.