Interface SearchCompoundExpression
- All Superinterfaces:
SearchQuery
- All Known Subinterfaces:
SearchAndExpression,SearchFilterExpression,SearchNotExpression,SearchOrExpression
SearchCompoundExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchCompoundExpression searchCompoundExpression = SearchCompoundExpression.builder()
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for SearchCompoundExpressionbuilder(SearchCompoundExpression template) create builder for SearchCompoundExpression instancecopyDeep()static SearchCompoundExpressiondeepCopy(SearchCompoundExpression template) factory method to create a deep copy of SearchCompoundExpressionstatic SearchCompoundExpressionof()factory methodstatic SearchCompoundExpressionof(SearchCompoundExpression template) factory method to create a shallow copy SearchCompoundExpressionstatic com.fasterxml.jackson.core.type.TypeReference<SearchCompoundExpression>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.search.SearchQuery
withSearchQuery
-
Method Details
-
of
factory method- Returns:
- instance of SearchCompoundExpression
-
of
factory method to create a shallow copy SearchCompoundExpression- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
SearchCompoundExpression copyDeep()- Specified by:
copyDeepin interfaceSearchQuery
-
deepCopy
factory method to create a deep copy of SearchCompoundExpression- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for SearchCompoundExpression- Returns:
- builder
-
builder
create builder for SearchCompoundExpression instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withSearchCompoundExpression
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
-