graphql.language.InputObjectTypeExtensionDefinition Maven / Gradle / Ivy
package graphql.language;
import graphql.Internal;
import graphql.PublicApi;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
@PublicApi
public class InputObjectTypeExtensionDefinition extends InputObjectTypeDefinition {
@Internal
protected InputObjectTypeExtensionDefinition(String name,
List directives,
List inputValueDefinitions,
Description description,
SourceLocation sourceLocation,
List comments) {
super(name, directives, inputValueDefinitions, description, sourceLocation, comments);
}
@Override
public InputObjectTypeExtensionDefinition deepCopy() {
return new InputObjectTypeExtensionDefinition(getName(),
deepCopy(getDirectives()),
deepCopy(getInputValueDefinitions()),
getDescription(),
getSourceLocation(),
getComments());
}
@Override
public String toString() {
return "InputObjectTypeExtensionDefinition{" +
"name='" + getName() + '\'' +
", directives=" + getDirectives() +
", inputValueDefinitions=" + getInputValueDefinitions() +
'}';
}
public static Builder newInputObjectTypeExtensionDefinition() {
return new Builder();
}
public InputObjectTypeExtensionDefinition transformExtension(Consumer builderConsumer) {
Builder builder = new Builder(this);
builderConsumer.accept(builder);
return builder.build();
}
public static final class Builder implements NodeBuilder {
private SourceLocation sourceLocation;
private List comments = new ArrayList<>();
private String name;
private Description description;
private List directives = new ArrayList<>();
private List inputValueDefinitions = new ArrayList<>();
private Builder() {
}
private Builder(InputObjectTypeDefinition existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = existing.getComments();
this.name = existing.getName();
this.description = existing.getDescription();
this.directives = existing.getDirectives();
this.inputValueDefinitions = existing.getInputValueDefinitions();
}
public Builder sourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
public Builder comments(List comments) {
this.comments = comments;
return this;
}
public Builder name(String name) {
this.name = name;
return this;
}
public Builder description(Description description) {
this.description = description;
return this;
}
public Builder directives(List directives) {
this.directives = directives;
return this;
}
public Builder inputValueDefinitions(List inputValueDefinitions) {
this.inputValueDefinitions = inputValueDefinitions;
return this;
}
public InputObjectTypeExtensionDefinition build() {
InputObjectTypeExtensionDefinition inputObjectTypeDefinition = new InputObjectTypeExtensionDefinition(name,
directives,
inputValueDefinitions,
description,
sourceLocation,
comments);
return inputObjectTypeDefinition;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy