Interface SearchExactExpression
- All Superinterfaces:
SearchQuery
,SearchQueryExpression
SearchExactExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchExactExpression searchExactExpression = SearchExactExpression.builder()
.exact(exactBuilder -> exactBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic SearchExactExpressionBuilder
builder()
builder factory method for SearchExactExpressionstatic SearchExactExpressionBuilder
builder
(SearchExactExpression template) create builder for SearchExactExpression instancestatic SearchExactExpression
deepCopy
(SearchExactExpression template) factory method to create a deep copy of SearchExactExpression@NotNull @Valid SearchAnyValue
getExact()
static SearchExactExpression
of()
factory methodstatic SearchExactExpression
of
(SearchExactExpression template) factory method to create a shallow copy SearchExactExpressionvoid
setExact
(SearchAnyValue exact) set exactstatic com.fasterxml.jackson.core.type.TypeReference<SearchExactExpression>
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
-
getExact
- Returns:
- exact
-
setExact
set exact- Parameters:
exact
- value to be set
-
of
factory method- Returns:
- instance of SearchExactExpression
-
of
factory method to create a shallow copy SearchExactExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of SearchExactExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SearchExactExpression- Returns:
- builder
-
builder
create builder for SearchExactExpression instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withSearchExactExpression
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
-