Interface ProductSearchFacetExpression
- All Known Subinterfaces:
ProductSearchFacetCountExpression
,ProductSearchFacetDistinctExpression
,ProductSearchFacetRangesExpression
public interface ProductSearchFacetExpression
ProductSearchFacetExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ProductSearchFacetExpression productSearchFacetExpression = ProductSearchFacetExpression.builder()
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductSearchFacetExpressionbuilder
(ProductSearchFacetExpression template) create builder for ProductSearchFacetExpression instancestatic ProductSearchFacetExpression
deepCopy
(ProductSearchFacetExpression template) factory method to create a deep copy of ProductSearchFacetExpressionstatic ProductSearchFacetExpression
of()
factory methodstatic ProductSearchFacetExpression
of
(ProductSearchFacetExpression template) factory method to create a shallow copy ProductSearchFacetExpressionstatic com.fasterxml.jackson.core.type.TypeReference<ProductSearchFacetExpression>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
of
factory method- Returns:
- instance of ProductSearchFacetExpression
-
of
factory method to create a shallow copy ProductSearchFacetExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductSearchFacetExpression deepCopy(@Nullable ProductSearchFacetExpression template) factory method to create a deep copy of ProductSearchFacetExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductSearchFacetExpression- Returns:
- builder
-
builder
create builder for ProductSearchFacetExpression instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductSearchFacetExpression
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
-