Class EnumKeyAlreadyExistsErrorBuilder
java.lang.Object
com.commercetools.api.models.error.EnumKeyAlreadyExistsErrorBuilder
- All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<EnumKeyAlreadyExistsError>
public class EnumKeyAlreadyExistsErrorBuilder
extends Object
implements io.vrap.rmf.base.client.Builder<EnumKeyAlreadyExistsError>
EnumKeyAlreadyExistsErrorBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
EnumKeyAlreadyExistsError enumKeyAlreadyExistsError = EnumKeyAlreadyExistsError.builder()
.message("{message}")
.conflictingEnumKey("{conflictingEnumKey}")
.conflictingAttributeName("{conflictingAttributeName}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionError-specific additional fields.build()
builds EnumKeyAlreadyExistsError with checking for non-null required valuesbuilds EnumKeyAlreadyExistsError without checking for non-null required valuesconflictingAttributeName
(String conflictingAttributeName) Name of the conflicting Attribute.conflictingEnumKey
(String conflictingEnumKey) Conflicting enum key.Name of the conflicting Attribute.Conflicting enum key."The $attributeName attribute definition already contains an enum value with the key $enumKey."
Error-specific additional fields."The $attributeName attribute definition already contains an enum value with the key $enumKey."
of()
factory method for an instance of EnumKeyAlreadyExistsErrorBuilderof
(EnumKeyAlreadyExistsError template) create builder for EnumKeyAlreadyExistsError instanceError-specific additional fields.
-
Constructor Details
-
EnumKeyAlreadyExistsErrorBuilder
public EnumKeyAlreadyExistsErrorBuilder()
-
-
Method Details
-
message
"The $attributeName attribute definition already contains an enum value with the key $enumKey."
- Parameters:
message
- value to be set- Returns:
- Builder
-
values
Error-specific additional fields.
- Parameters:
values
- properties to be set- Returns:
- Builder
-
addValue
Error-specific additional fields.
- Parameters:
key
- property namevalue
- property value- Returns:
- Builder
-
conflictingEnumKey
Conflicting enum key.
- Parameters:
conflictingEnumKey
- value to be set- Returns:
- Builder
-
conflictingAttributeName
Name of the conflicting Attribute.
- Parameters:
conflictingAttributeName
- value to be set- Returns:
- Builder
-
getMessage
"The $attributeName attribute definition already contains an enum value with the key $enumKey."
- Returns:
- message
-
getValues
Error-specific additional fields.
- Returns:
- pattern properties
-
getConflictingEnumKey
Conflicting enum key.
- Returns:
- conflictingEnumKey
-
getConflictingAttributeName
Name of the conflicting Attribute.
- Returns:
- conflictingAttributeName
-
build
builds EnumKeyAlreadyExistsError with checking for non-null required values- Specified by:
build
in interfaceio.vrap.rmf.base.client.Builder<EnumKeyAlreadyExistsError>
- Returns:
- EnumKeyAlreadyExistsError
-
buildUnchecked
builds EnumKeyAlreadyExistsError without checking for non-null required values- Returns:
- EnumKeyAlreadyExistsError
-
of
factory method for an instance of EnumKeyAlreadyExistsErrorBuilder- Returns:
- builder
-
of
create builder for EnumKeyAlreadyExistsError instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-