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 instancecopyDeep()deepCopy(OrderSearchFullTextExpression template) factory method to create a deep copy of OrderSearchFullTextExpression@NotNull @Valid OrderSearchFullTextValueof()factory methodof(OrderSearchFullTextExpression template) factory method to create a shallow copy OrderSearchFullTextExpressionvoidsetFullText(OrderSearchFullTextValue fullText) set fullTextstatic com.fasterxml.jackson.core.type.TypeReference<OrderSearchFullTextExpression>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.order.OrderSearchQuery
withOrderSearchQueryMethods 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
-
copyDeep
OrderSearchFullTextExpression copyDeep()- Specified by:
copyDeepin interfaceOrderSearchQuery- Specified by:
copyDeepin interfaceOrderSearchQueryExpression
-
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
-