Interface OrderSearchFullTextExpression
- All Superinterfaces:
OrderSearchQuery
,OrderSearchQueryExpression
OrderSearchFullTextExpression
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
OrderSearchFullTextExpression orderSearchFullTextExpression = OrderSearchFullTextExpression.builder()
.fullText(fullTextBuilder -> fullTextBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for OrderSearchFullTextExpressionbuilder
(OrderSearchFullTextExpression template) create builder for OrderSearchFullTextExpression instancedeepCopy
(OrderSearchFullTextExpression template) factory method to create a deep copy of OrderSearchFullTextExpression@NotNull @Valid OrderSearchFullTextValue
of()
factory methodof
(OrderSearchFullTextExpression template) factory method to create a shallow copy OrderSearchFullTextExpressionvoid
setFullText
(OrderSearchFullTextValue fullText) set fullTextstatic com.fasterxml.jackson.core.type.TypeReference<OrderSearchFullTextExpression>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.order.OrderSearchQuery
withOrderSearchQuery
Methods inherited from interface com.commercetools.api.models.order.OrderSearchQueryExpression
withOrderSearchQueryExpression
-
Method Details
-
getFullText
- Returns:
- fullText
-
setFullText
set fullText- Parameters:
fullText
- value to be set
-
of
factory method- Returns:
- instance of OrderSearchFullTextExpression
-
of
factory method to create a shallow copy OrderSearchFullTextExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static OrderSearchFullTextExpression deepCopy(@Nullable OrderSearchFullTextExpression template) factory method to create a deep copy of OrderSearchFullTextExpression- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for OrderSearchFullTextExpression- Returns:
- builder
-
builder
create builder for OrderSearchFullTextExpression instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withOrderSearchFullTextExpression
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
-