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 instancecopyDeep()static SearchWildCardExpressiondeepCopy(SearchWildCardExpression template) factory method to create a deep copy of SearchWildCardExpression@NotNull @Valid SearchAnyValuestatic SearchWildCardExpressionof()factory methodstatic SearchWildCardExpressionof(SearchWildCardExpression template) factory method to create a shallow copy SearchWildCardExpressionvoidsetWildcard(SearchAnyValue wildcard) set wildcardstatic com.fasterxml.jackson.core.type.TypeReference<SearchWildCardExpression>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
-
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
-
copyDeep
SearchWildCardExpression copyDeep()- Specified by:
copyDeepin interfaceSearchQuery- Specified by:
copyDeepin interfaceSearchQueryExpression
-
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
-