Interface SearchFullTextPrefixExpression
- All Superinterfaces:
SearchQuery
,SearchQueryExpression
SearchFullTextPrefixExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchFullTextPrefixExpression searchFullTextPrefixExpression = SearchFullTextPrefixExpression.builder()
.fullTextPrefix(fullTextPrefixBuilder -> fullTextPrefixBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for SearchFullTextPrefixExpressionbuilder
(SearchFullTextPrefixExpression template) create builder for SearchFullTextPrefixExpression instancedeepCopy
(SearchFullTextPrefixExpression template) factory method to create a deep copy of SearchFullTextPrefixExpression@NotNull @Valid SearchFullTextPrefixValue
of()
factory methodof
(SearchFullTextPrefixExpression template) factory method to create a shallow copy SearchFullTextPrefixExpressionvoid
setFullTextPrefix
(SearchFullTextPrefixValue fullTextPrefix) set fullTextPrefixstatic com.fasterxml.jackson.core.type.TypeReference<SearchFullTextPrefixExpression>
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
-
getFullTextPrefix
- Returns:
- fullTextPrefix
-
setFullTextPrefix
set fullTextPrefix- Parameters:
fullTextPrefix
- value to be set
-
of
factory method- Returns:
- instance of SearchFullTextPrefixExpression
-
of
factory method to create a shallow copy SearchFullTextPrefixExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static SearchFullTextPrefixExpression deepCopy(@Nullable SearchFullTextPrefixExpression template) factory method to create a deep copy of SearchFullTextPrefixExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SearchFullTextPrefixExpression- Returns:
- builder
-
builder
create builder for SearchFullTextPrefixExpression instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withSearchFullTextPrefixExpression
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<SearchFullTextPrefixExpression> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-