graphql.language.InterfaceTypeExtensionDefinition Maven / Gradle / Ivy
package graphql.language;
import com.google.common.collect.ImmutableList;
import graphql.Internal;
import graphql.PublicApi;
import graphql.collect.ImmutableKit;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import static graphql.Assert.assertNotNull;
import static graphql.collect.ImmutableKit.emptyList;
@PublicApi
public class InterfaceTypeExtensionDefinition extends InterfaceTypeDefinition {
@Internal
protected InterfaceTypeExtensionDefinition(String name,
List implementz,
List definitions,
List directives,
Description description,
SourceLocation sourceLocation,
List comments,
IgnoredChars ignoredChars,
Map additionalData) {
super(name, implementz, definitions, directives, description, sourceLocation, comments, ignoredChars, additionalData);
}
@Override
public InterfaceTypeExtensionDefinition deepCopy() {
return new InterfaceTypeExtensionDefinition(getName(),
getImplements(),
deepCopy(getFieldDefinitions()),
deepCopy(getDirectives()),
getDescription(),
getSourceLocation(),
getComments(),
getIgnoredChars(),
getAdditionalData());
}
@Override
public String toString() {
return "InterfaceTypeExtensionDefinition{" +
"name='" + getName() + '\'' +
", fieldDefinitions=" + getFieldDefinitions() +
", directives=" + getDirectives() +
'}';
}
public static Builder newInterfaceTypeExtensionDefinition() {
return new Builder();
}
@Override
public InterfaceTypeExtensionDefinition withNewChildren(NodeChildrenContainer newChildren) {
return transformExtension(builder -> builder
.definitions(newChildren.getChildren(CHILD_DEFINITIONS))
.directives(newChildren.getChildren(CHILD_DIRECTIVES))
);
}
public InterfaceTypeExtensionDefinition transformExtension(Consumer builderConsumer) {
Builder builder = new Builder(this);
builderConsumer.accept(builder);
return builder.build();
}
public static final class Builder implements NodeDirectivesBuilder {
private SourceLocation sourceLocation;
private ImmutableList comments = emptyList();
private String name;
private Description description;
private ImmutableList implementz = emptyList();
private ImmutableList definitions = emptyList();
private ImmutableList directives = emptyList();
private IgnoredChars ignoredChars = IgnoredChars.EMPTY;
private Map additionalData = new LinkedHashMap<>();
private Builder() {
}
private Builder(InterfaceTypeExtensionDefinition existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = ImmutableList.copyOf(existing.getComments());
this.name = existing.getName();
this.description = existing.getDescription();
this.directives = ImmutableList.copyOf(existing.getDirectives());
this.implementz = ImmutableList.copyOf(existing.getImplements());
this.definitions = ImmutableList.copyOf(existing.getFieldDefinitions());
this.ignoredChars = existing.getIgnoredChars();
this.additionalData = new LinkedHashMap<>(existing.getAdditionalData());
}
public Builder sourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
public Builder comments(List comments) {
this.comments = ImmutableList.copyOf(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 implementz(List implementz) {
this.implementz = ImmutableList.copyOf(implementz);
return this;
}
public Builder implementz(Type implementz) {
this.implementz = ImmutableKit.addToList(this.implementz, implementz);
return this;
}
public Builder definitions(List definitions) {
this.definitions = ImmutableList.copyOf(definitions);
return this;
}
public Builder definition(FieldDefinition definition) {
this.definitions = ImmutableKit.addToList(definitions, definition);
return this;
}
@Override
public Builder directives(List directives) {
this.directives = ImmutableList.copyOf(directives);
return this;
}
public Builder directive(Directive directive) {
this.directives = ImmutableKit.addToList(directives, directive);
return this;
}
public Builder ignoredChars(IgnoredChars ignoredChars) {
this.ignoredChars = ignoredChars;
return this;
}
public Builder additionalData(Map additionalData) {
this.additionalData = assertNotNull(additionalData);
return this;
}
public Builder additionalData(String key, String value) {
this.additionalData.put(key, value);
return this;
}
public InterfaceTypeExtensionDefinition build() {
return new InterfaceTypeExtensionDefinition(name,
implementz,
definitions,
directives,
description,
sourceLocation,
comments,
ignoredChars,
additionalData);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy