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 instancestatic SearchFullTextExpression
deepCopy
(SearchFullTextExpression template) factory method to create a deep copy of SearchFullTextExpression@NotNull @Valid SearchFullTextValue
static SearchFullTextExpression
of()
factory methodstatic SearchFullTextExpression
of
(SearchFullTextExpression template) factory method to create a shallow copy SearchFullTextExpressionvoid
setFullText
(SearchFullTextValue fullText) set fullTextstatic com.fasterxml.jackson.core.type.TypeReference<SearchFullTextExpression>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.search.SearchQuery
withSearchQuery
Methods 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
-
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
-