Class SearchCompoundExpressionBuilder
java.lang.Object
com.commercetools.api.models.search.SearchCompoundExpressionBuilder
- All Implemented Interfaces:
Builder<SearchCompoundExpression>
public class SearchCompoundExpressionBuilder
extends Object
implements Builder<SearchCompoundExpression>
SearchCompoundExpressionBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
SearchCompoundExpression searchCompoundExpression = SearchCompoundExpression.builder()
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
builds SearchCompoundExpression with checking for non-null required valuesbuilds SearchCompoundExpression without checking for non-null required valuesof()
factory method for an instance of SearchCompoundExpressionBuilderof
(SearchCompoundExpression template) create builder for SearchCompoundExpression instance
-
Constructor Details
-
SearchCompoundExpressionBuilder
public SearchCompoundExpressionBuilder()
-
-
Method Details
-
build
builds SearchCompoundExpression with checking for non-null required values- Specified by:
build
in interfaceBuilder<SearchCompoundExpression>
- Returns:
- SearchCompoundExpression
-
buildUnchecked
builds SearchCompoundExpression without checking for non-null required values- Returns:
- SearchCompoundExpression
-
of
factory method for an instance of SearchCompoundExpressionBuilder- Returns:
- builder
-
of
create builder for SearchCompoundExpression instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-