Class GraphQLEnumKeyAlreadyExistsErrorBuilder
java.lang.Object
com.commercetools.api.models.error.GraphQLEnumKeyAlreadyExistsErrorBuilder
- All Implemented Interfaces:
Builder<GraphQLEnumKeyAlreadyExistsError>
public class GraphQLEnumKeyAlreadyExistsErrorBuilder
extends Object
implements Builder<GraphQLEnumKeyAlreadyExistsError>
GraphQLEnumKeyAlreadyExistsErrorBuilder
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
GraphQLEnumKeyAlreadyExistsError graphQLEnumKeyAlreadyExistsError = GraphQLEnumKeyAlreadyExistsError.builder()
.conflictingEnumKey("{conflictingEnumKey}")
.conflictingAttributeName("{conflictingAttributeName}")
.build()
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionError-specific additional fields.build()
builds GraphQLEnumKeyAlreadyExistsError with checking for non-null required valuesbuilds GraphQLEnumKeyAlreadyExistsError 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.Error-specific additional fields.of()
factory method for an instance of GraphQLEnumKeyAlreadyExistsErrorBuilderof
(GraphQLEnumKeyAlreadyExistsError template) create builder for GraphQLEnumKeyAlreadyExistsError instanceError-specific additional fields.
-
Constructor Details
-
GraphQLEnumKeyAlreadyExistsErrorBuilder
public GraphQLEnumKeyAlreadyExistsErrorBuilder()
-
-
Method Details
-
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
public GraphQLEnumKeyAlreadyExistsErrorBuilder conflictingAttributeName(String conflictingAttributeName) Name of the conflicting Attribute.
- Parameters:
conflictingAttributeName
- value to be set- Returns:
- Builder
-
getValues
Error-specific additional fields.
- Returns:
- pattern properties
-
getConflictingEnumKey
Conflicting enum key.
- Returns:
- conflictingEnumKey
-
getConflictingAttributeName
Name of the conflicting Attribute.
- Returns:
- conflictingAttributeName
-
build
builds GraphQLEnumKeyAlreadyExistsError with checking for non-null required values- Specified by:
build
in interfaceBuilder<GraphQLEnumKeyAlreadyExistsError>
- Returns:
- GraphQLEnumKeyAlreadyExistsError
-
buildUnchecked
builds GraphQLEnumKeyAlreadyExistsError without checking for non-null required values- Returns:
- GraphQLEnumKeyAlreadyExistsError
-
of
factory method for an instance of GraphQLEnumKeyAlreadyExistsErrorBuilder- Returns:
- builder
-
of
create builder for GraphQLEnumKeyAlreadyExistsError instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-