org.hibernate.search.bridge.builtin.impl
public class String2FieldBridgeAdaptor extends Object implements FieldBridge, StringBridge
| Constructor and Description |
|---|
String2FieldBridgeAdaptor(StringBridge stringBridge) |
| Modifier and Type | Method and Description |
|---|---|
String |
objectToString(Object object)
Converts the object representation to a string.
|
void |
set(String name,
Object value,
Document document,
LuceneOptions luceneOptions)
Manipulate the document to index the given value.
|
String |
toString() |
public String2FieldBridgeAdaptor(StringBridge stringBridge)
public void set(String name, Object value, Document document, LuceneOptions luceneOptions)
FieldBridgename to document following
the parameters luceneOptions if the value is not null.
{code}
String fieldValue = convertToString(value);
luceneOptions.addFieldToDocument(name, fieldValue, document);
{code}set in interface FieldBridgename - 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.public String objectToString(Object object)
StringBridgeobjectToString in interface StringBridgeobject - The object to transform into a string representation.null. It can be empty though.Copyright © 2006-2015 Red Hat, Inc. All Rights Reserved