public abstract class SpatialFieldBridge extends Object implements MetadataProvidingFieldBridge, AppliedOnTypeAwareBridge
| Modifier and Type | Field and Description |
|---|---|
protected String |
latitudeField |
protected String |
latitudeIndexedFieldName |
protected String |
longitudeField |
protected String |
longitudeIndexedFieldName |
| Constructor and Description |
|---|
SpatialFieldBridge() |
SpatialFieldBridge(String latitudeField,
String longitudeField) |
| Modifier and Type | Method and Description |
|---|---|
static String |
capitalize(String name) |
void |
configureFieldMetadata(String name,
FieldMetadataBuilder builder)
Allows this bridge to expose meta-data about the fields it creates.
|
protected Double |
getLatitude(Object value) |
protected Double |
getLongitude(Object value) |
abstract void |
set(String name,
Object value,
Document document,
LuceneOptions luceneOptions)
Manipulate the document to index the given value.
|
void |
setAppliedOnType(Class<?> returnType)
Set the return type of the bridge (the type of the field linked to the bridge).
|
protected String latitudeField
protected String longitudeField
protected String latitudeIndexedFieldName
protected String longitudeIndexedFieldName
public void setAppliedOnType(Class<?> returnType)
AppliedOnTypeAwareBridgesetAppliedOnType in interface AppliedOnTypeAwareBridgereturnType - return typepublic abstract void set(String name, Object value, Document document, LuceneOptions luceneOptions)
FieldBridge
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);
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 void configureFieldMetadata(String name, FieldMetadataBuilder builder)
MetadataProvidingFieldBridgeconfigureFieldMetadata in interface MetadataProvidingFieldBridgename - The default field name; Should be used consistently with
FieldBridge.set(String, Object, org.apache.lucene.document.Document, LuceneOptions).builder - Builder for exposing field-related meta-dataCopyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.