Interface AttributeEnumType
- All Superinterfaces:
AttributeType
AttributeEnumType
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
AttributeEnumType attributeEnumType = AttributeEnumType.builder()
.plusValues(valuesBuilder -> valuesBuilder)
.build()
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic AttributeEnumTypeBuilderbuilder()builder factory method for AttributeEnumTypestatic AttributeEnumTypeBuilderbuilder(AttributeEnumType template) create builder for AttributeEnumType instancecopyDeep()static AttributeEnumTypedeepCopy(AttributeEnumType template) factory method to create a deep copy of AttributeEnumType@NotNull @Valid List<AttributePlainEnumValue>static AttributeEnumTypeof()factory methodstatic AttributeEnumTypeof(AttributeEnumType template) factory method to create a shallow copy AttributeEnumTypevoidsetValues(AttributePlainEnumValue... values) set valuesvoidsetValues(List<AttributePlainEnumValue> values) set valuesstatic tools.jackson.core.type.TypeReference<AttributeEnumType>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithAttributeEnumType(Function<AttributeEnumType, T> helper) accessor map functionMethods inherited from interface com.commercetools.importapi.models.producttypes.AttributeType
getName, withAttributeType
-
Field Details
-
ENUM
discriminator value for AttributeEnumType- See Also:
-
-
Method Details
-
getValues
- Returns:
- values
-
setValues
set values- Parameters:
values- values to be set
-
setValues
set values- Parameters:
values- values to be set
-
of
factory method- Returns:
- instance of AttributeEnumType
-
of
factory method to create a shallow copy AttributeEnumType- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
AttributeEnumType copyDeep()- Specified by:
copyDeepin interfaceAttributeType
-
deepCopy
factory method to create a deep copy of AttributeEnumType- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for AttributeEnumType- Returns:
- builder
-
builder
create builder for AttributeEnumType instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withAttributeEnumType
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
-