public interface FieldBridge
All implementations need to be threadsafe.
Modifier and Type | Method and Description |
---|---|
void |
set(String name,
Object value,
Document document,
LuceneOptions luceneOptions)
Manipulate the document to index the given value.
|
void set(String name, Object value, Document document, LuceneOptions luceneOptions)
A common implementation is to add a Field with the given name
to document
following
the parameters luceneOptions
if the value
is not null
.
String fieldValue = convertToString(value);
luceneOptions.addFieldToDocument(name, fieldValue, document);
name
- The field to add to the Lucene documentvalue
- The actual value to indexdocument
- The Lucene document into which we want to index the value.luceneOptions
- Contains the parameters used for adding value
to
the Lucene document.Copyright © 2006-2017 Red Hat, Inc. All Rights Reserved