Interface OrderSearchAnyValue
- All Superinterfaces:
OrderSearchQueryExpressionValue
OrderSearchAnyValue
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
OrderSearchAnyValue orderSearchAnyValue = OrderSearchAnyValue.builder()
.field("{field}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic OrderSearchAnyValueBuilderbuilder()builder factory method for OrderSearchAnyValuestatic OrderSearchAnyValueBuilderbuilder(OrderSearchAnyValue template) create builder for OrderSearchAnyValue instancecopyDeep()static OrderSearchAnyValuedeepCopy(OrderSearchAnyValue template) factory method to create a deep copy of OrderSearchAnyValue@NotNull ObjectgetValue()static OrderSearchAnyValueof()factory methodstatic OrderSearchAnyValueof(OrderSearchAnyValue template) factory method to create a shallow copy OrderSearchAnyValuevoidsetCaseInsensitive(Boolean caseInsensitive) set caseInsensitivevoidsetLanguage(String language) set languagevoidset valuestatic com.fasterxml.jackson.core.type.TypeReference<OrderSearchAnyValue>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithOrderSearchAnyValue(Function<OrderSearchAnyValue, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.order.OrderSearchQueryExpressionValue
getBoost, getCustomType, getField, setBoost, setCustomType, setField, withOrderSearchQueryExpressionValue
-
Method Details
-
getValue
- Returns:
- value
-
getLanguage
String getLanguage()- Returns:
- language
-
getCaseInsensitive
Boolean getCaseInsensitive()- Returns:
- caseInsensitive
-
setValue
set value- Parameters:
value- value to be set
-
setLanguage
set language- Parameters:
language- value to be set
-
setCaseInsensitive
set caseInsensitive- Parameters:
caseInsensitive- value to be set
-
of
factory method- Returns:
- instance of OrderSearchAnyValue
-
of
factory method to create a shallow copy OrderSearchAnyValue- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
OrderSearchAnyValue copyDeep()- Specified by:
copyDeepin interfaceOrderSearchQueryExpressionValue
-
deepCopy
factory method to create a deep copy of OrderSearchAnyValue- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for OrderSearchAnyValue- Returns:
- builder
-
builder
create builder for OrderSearchAnyValue instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withOrderSearchAnyValue
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
-