org.hibernate.search.bridge.builtin
Class IterableBridge
java.lang.Object
org.hibernate.search.bridge.builtin.IterableBridge
- All Implemented Interfaces:
- FieldBridge
- Direct Known Subclasses:
- BuiltinIterableBridge
public class IterableBridge
- extends Object
- implements FieldBridge
Each entry (null included) of an Iterable object is indexed using the specified
FieldBridge.
A null Iterable object is not indexed.
- Author:
- Davide D'Alto
|
Method Summary |
void |
set(String fieldName,
Object value,
org.apache.lucene.document.Document document,
LuceneOptions luceneOptions)
Manipulate the document to index the given value. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
IterableBridge
public IterableBridge(FieldBridge bridge)
- Parameters:
bridge - the FieldBridge used for each entry of the Iterable object.
set
public void set(String fieldName,
Object value,
org.apache.lucene.document.Document document,
LuceneOptions luceneOptions)
- Description copied from interface:
FieldBridge
- Manipulate the document to index the given value.
A common implementation is to add a Field with the given
name to document following
the parameters luceneOptions if the value is not null.
{code}
String fieldValue = convertToString(value);
luceneOptions.addFieldToDocument(name, fieldValue, document);
{code}
- Specified by:
set in interface FieldBridge
- Parameters:
fieldName - 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-2013 Hibernate. All Rights Reserved.