org.hibernate.search.bridge
Interface FieldBridge
- All Known Subinterfaces:
- TwoWayFieldBridge
- All Known Implementing Classes:
- String2FieldBridgeAdaptor, TwoWayString2FieldBridgeAdaptor
public interface FieldBridge
Link between a java property and a Lucene Document
Usually a Java property will be linked to a Document Field.
All implementations need to be threadsafe.
- Author:
- Emmanuel Bernard
set
void set(String name,
Object value,
Document document,
LuceneOptions luceneOptions)
- Manipulate the document to index the given value.
A common implementation is to add a Field
name to the given document following
the parameters (store, index, boost) if the
value is not null
- Parameters:
luceneOptions - Contains the parameters used for adding value to
the Lucene document.