Interface SearchWildCardExpression
- All Superinterfaces:
SearchQuery
,SearchQueryExpression
SearchWildCardExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchWildCardExpression searchWildCardExpression = SearchWildCardExpression.builder()
.wildcard(wildcardBuilder -> wildcardBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for SearchWildCardExpressionbuilder
(SearchWildCardExpression template) create builder for SearchWildCardExpression instancestatic SearchWildCardExpression
deepCopy
(SearchWildCardExpression template) factory method to create a deep copy of SearchWildCardExpression@NotNull @Valid SearchAnyValue
static SearchWildCardExpression
of()
factory methodstatic SearchWildCardExpression
of
(SearchWildCardExpression template) factory method to create a shallow copy SearchWildCardExpressionvoid
setWildcard
(SearchAnyValue wildcard) set wildcardstatic com.fasterxml.jackson.core.type.TypeReference<SearchWildCardExpression>
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
-
getWildcard
- Returns:
- wildcard
-
setWildcard
set wildcard- Parameters:
wildcard
- value to be set
-
of
factory method- Returns:
- instance of SearchWildCardExpression
-
of
factory method to create a shallow copy SearchWildCardExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of SearchWildCardExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SearchWildCardExpression- Returns:
- builder
-
builder
create builder for SearchWildCardExpression instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withSearchWildCardExpression
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
-