Interface SearchFuzzyExpression
- All Superinterfaces:
SearchQuery,SearchQueryExpression
SearchFuzzyExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchFuzzyExpression searchFuzzyExpression = SearchFuzzyExpression.builder()
.fuzzy(fuzzyBuilder -> fuzzyBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic SearchFuzzyExpressionBuilderbuilder()builder factory method for SearchFuzzyExpressionstatic SearchFuzzyExpressionBuilderbuilder(SearchFuzzyExpression template) create builder for SearchFuzzyExpression instancecopyDeep()static SearchFuzzyExpressiondeepCopy(SearchFuzzyExpression template) factory method to create a deep copy of SearchFuzzyExpression@NotNull @Valid SearchFuzzyValuegetFuzzy()static SearchFuzzyExpressionof()factory methodstatic SearchFuzzyExpressionof(SearchFuzzyExpression template) factory method to create a shallow copy SearchFuzzyExpressionvoidsetFuzzy(SearchFuzzyValue fuzzy) set fuzzystatic com.fasterxml.jackson.core.type.TypeReference<SearchFuzzyExpression>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
-
getFuzzy
- Returns:
- fuzzy
-
setFuzzy
set fuzzy- Parameters:
fuzzy- value to be set
-
of
factory method- Returns:
- instance of SearchFuzzyExpression
-
of
factory method to create a shallow copy SearchFuzzyExpression- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
SearchFuzzyExpression copyDeep()- Specified by:
copyDeepin interfaceSearchQuery- Specified by:
copyDeepin interfaceSearchQueryExpression
-
deepCopy
factory method to create a deep copy of SearchFuzzyExpression- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SearchFuzzyExpression- Returns:
- builder
-
builder
create builder for SearchFuzzyExpression instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withSearchFuzzyExpression
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
-