Interface SearchFullTextExpression
- All Superinterfaces:
SearchQuery,SearchQueryExpression
SearchFullTextExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchFullTextExpression searchFullTextExpression = SearchFullTextExpression.builder()
.fullText(fullTextBuilder -> fullTextBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for SearchFullTextExpressionbuilder(SearchFullTextExpression template) create builder for SearchFullTextExpression instancecopyDeep()static SearchFullTextExpressiondeepCopy(SearchFullTextExpression template) factory method to create a deep copy of SearchFullTextExpression@NotNull @Valid SearchFullTextValuestatic SearchFullTextExpressionof()factory methodstatic SearchFullTextExpressionof(SearchFullTextExpression template) factory method to create a shallow copy SearchFullTextExpressionvoidsetFullText(SearchFullTextValue fullText) set fullTextstatic com.fasterxml.jackson.core.type.TypeReference<SearchFullTextExpression>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.search.SearchQuery
withSearchQueryMethods inherited from interface com.commercetools.api.models.search.SearchQueryExpression
withSearchQueryExpression
-
Method Details
-
getFullText
- Returns:
- fullText
-
setFullText
set fullText- Parameters:
fullText- value to be set
-
of
factory method- Returns:
- instance of SearchFullTextExpression
-
of
factory method to create a shallow copy SearchFullTextExpression- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
SearchFullTextExpression copyDeep()- Specified by:
copyDeepin interfaceSearchQuery- Specified by:
copyDeepin interfaceSearchQueryExpression
-
deepCopy
factory method to create a deep copy of SearchFullTextExpression- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SearchFullTextExpression- Returns:
- builder
-
builder
create builder for SearchFullTextExpression instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withSearchFullTextExpression
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-