Class EnumKeyDoesNotExistErrorBuilder
java.lang.Object
com.commercetools.api.models.error.EnumKeyDoesNotExistErrorBuilder
- All Implemented Interfaces:
Builder<EnumKeyDoesNotExistError>
public class EnumKeyDoesNotExistErrorBuilder
extends Object
implements Builder<EnumKeyDoesNotExistError>
EnumKeyDoesNotExistErrorBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
EnumKeyDoesNotExistError enumKeyDoesNotExistError = EnumKeyDoesNotExistError.builder()
.message("{message}")
.conflictingEnumKey("{conflictingEnumKey}")
.conflictingAttributeName("{conflictingAttributeName}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionError-specific additional fields.build()
builds EnumKeyDoesNotExistError with checking for non-null required valuesbuilds EnumKeyDoesNotExistError 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 $fieldName field definition does not contain an enum value with the key $enumKey."
Error-specific additional fields."The $fieldName field definition does not contain an enum value with the key $enumKey."
of()
factory method for an instance of EnumKeyDoesNotExistErrorBuilderof
(EnumKeyDoesNotExistError template) create builder for EnumKeyDoesNotExistError instanceError-specific additional fields.
-
Constructor Details
-
EnumKeyDoesNotExistErrorBuilder
public EnumKeyDoesNotExistErrorBuilder()
-
-
Method Details
-
message
"The $fieldName field definition does not contain 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 $fieldName field definition does not contain 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 EnumKeyDoesNotExistError with checking for non-null required values- Specified by:
build
in interfaceBuilder<EnumKeyDoesNotExistError>
- Returns:
- EnumKeyDoesNotExistError
-
buildUnchecked
builds EnumKeyDoesNotExistError without checking for non-null required values- Returns:
- EnumKeyDoesNotExistError
-
of
factory method for an instance of EnumKeyDoesNotExistErrorBuilder- Returns:
- builder
-
of
create builder for EnumKeyDoesNotExistError instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-