Field that stores a per-document int
value for scoring, sorting or value retrieval. Here's an example usage:
document.add(new IntDocValuesField(name, 22));
If you also need to store the value, you should add a separate {@link StoredField} instance. @see NumericDocValues @deprecated use {@link NumericDocValuesField} instead.
|
|