Class AbstractFreeTextQueryBuilder
- java.lang.Object
-
- de.hybris.platform.commerceservices.search.solrfacetsearch.querybuilder.impl.AbstractFreeTextQueryBuilder
-
- All Implemented Interfaces:
FreeTextQueryBuilder
- Direct Known Subclasses:
ClassificationFreeTextQueryBuilder,DefaultFreeTextQueryBuilder
@Deprecated(since="6.4", forRemoval=true) public abstract class AbstractFreeTextQueryBuilder extends java.lang.Object implements FreeTextQueryBuilderDeprecated, for removal: This API element is subject to removal in a future version.Since 6.4, default search mode (instead of legacy) should be used.Base class for building free text queries.
-
-
Constructor Summary
Constructors Constructor Description AbstractFreeTextQueryBuilder()Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidaddFreeTextQuery(SearchQuery searchQuery, IndexedProperty indexedProperty, java.lang.String value, double boost)Deprecated, for removal: This API element is subject to removal in a future version.protected voidaddFreeTextQuery(SearchQuery searchQuery, IndexedProperty indexedProperty, java.lang.String fullText, java.lang.String[] textWords, int boost)Deprecated, for removal: This API element is subject to removal in a future version.protected voidaddFreeTextQuery(SearchQuery searchQuery, java.lang.String field, java.lang.String value, java.lang.String suffixOp, double boost)Deprecated, for removal: This API element is subject to removal in a future version.Add a search term-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.hybris.platform.commerceservices.search.solrfacetsearch.querybuilder.FreeTextQueryBuilder
addFreeTextQuery
-
-
-
-
Method Detail
-
addFreeTextQuery
protected void addFreeTextQuery(SearchQuery searchQuery, IndexedProperty indexedProperty, java.lang.String fullText, java.lang.String[] textWords, int boost)
Deprecated, for removal: This API element is subject to removal in a future version.
-
addFreeTextQuery
protected void addFreeTextQuery(SearchQuery searchQuery, IndexedProperty indexedProperty, java.lang.String value, double boost)
Deprecated, for removal: This API element is subject to removal in a future version.
-
addFreeTextQuery
protected void addFreeTextQuery(SearchQuery searchQuery, java.lang.String field, java.lang.String value, java.lang.String suffixOp, double boost)
Deprecated, for removal: This API element is subject to removal in a future version.Add a search term- Parameters:
searchQuery- the search queryfield- the field to search invalue- the value to search for (not solr escaped)suffixOp- suffix field operatorboost- the boost factor for the term
-
-