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 SearchExactExpressionBuilderbuilder()builder factory method for SearchExactExpressionstatic SearchExactExpressionBuilderbuilder(SearchExactExpression template) create builder for SearchExactExpression instancecopyDeep()static SearchExactExpressiondeepCopy(SearchExactExpression template) factory method to create a deep copy of SearchExactExpression@NotNull @Valid SearchExactValuegetExact()static SearchExactExpressionof()factory methodstatic SearchExactExpressionof(SearchExactExpression template) factory method to create a shallow copy SearchExactExpressionvoidsetExact(SearchExactValue exact) set exactstatic com.fasterxml.jackson.core.type.TypeReference<SearchExactExpression>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
-
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
-
copyDeep
SearchExactExpression copyDeep()- Specified by:
copyDeepin interfaceSearchQuery- Specified by:
copyDeepin interfaceSearchQueryExpression
-
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
-