All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
graphql.language.UnionTypeDefinition Maven / Gradle / Ivy
package graphql.language;
import com.google.common.collect.ImmutableList;
import graphql.Internal;
import graphql.PublicApi;
import graphql.collect.ImmutableKit;
import graphql.util.TraversalControl;
import graphql.util.TraverserContext;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Consumer;
import static graphql.Assert.assertNotNull;
import static graphql.collect.ImmutableKit.emptyList;
import static graphql.collect.ImmutableKit.emptyMap;
import static graphql.language.NodeChildrenContainer.newNodeChildrenContainer;
@PublicApi
public class UnionTypeDefinition extends AbstractDescribedNode implements TypeDefinition, DirectivesContainer, NamedNode {
private final String name;
private final ImmutableList directives;
private final ImmutableList memberTypes;
public static final String CHILD_DIRECTIVES = "directives";
public static final String CHILD_MEMBER_TYPES = "memberTypes";
@Internal
protected UnionTypeDefinition(String name,
List directives,
List memberTypes,
Description description,
SourceLocation sourceLocation,
List comments,
IgnoredChars ignoredChars, Map additionalData) {
super(sourceLocation, comments, ignoredChars, additionalData, description);
this.name = name;
this.directives = ImmutableList.copyOf(directives);
this.memberTypes = ImmutableList.copyOf(memberTypes);
}
/**
* alternative to using a Builder for convenience
*
* @param name of the union
* @param directives on the union
*/
public UnionTypeDefinition(String name,
List directives) {
this(name, directives, emptyList(), null, null, emptyList(), IgnoredChars.EMPTY, emptyMap());
}
/**
* alternative to using a Builder for convenience
*
* @param name of the union
*/
public UnionTypeDefinition(String name) {
this(name, emptyList(), emptyList(), null, null, emptyList(), IgnoredChars.EMPTY, emptyMap());
}
@Override
public List getDirectives() {
return directives;
}
public List getMemberTypes() {
return memberTypes;
}
@Override
public String getName() {
return name;
}
@Override
public List getChildren() {
List result = new ArrayList<>();
result.addAll(directives);
result.addAll(memberTypes);
return result;
}
@Override
public NodeChildrenContainer getNamedChildren() {
return newNodeChildrenContainer()
.children(CHILD_DIRECTIVES, directives)
.children(CHILD_MEMBER_TYPES, memberTypes)
.build();
}
@Override
public UnionTypeDefinition withNewChildren(NodeChildrenContainer newChildren) {
return transform(builder -> builder
.directives(newChildren.getChildren(CHILD_DIRECTIVES))
.memberTypes(newChildren.getChildren(CHILD_MEMBER_TYPES))
);
}
@Override
public boolean isEqualTo(Node o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UnionTypeDefinition that = (UnionTypeDefinition) o;
return Objects.equals(this.name, that.name);
}
@Override
public UnionTypeDefinition deepCopy() {
return new UnionTypeDefinition(name,
deepCopy(directives),
deepCopy(memberTypes),
description,
getSourceLocation(),
getComments(),
getIgnoredChars(),
getAdditionalData());
}
@Override
public String toString() {
return "UnionTypeDefinition{" +
"name='" + name + '\'' +
"directives=" + directives +
", memberTypes=" + memberTypes +
'}';
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitUnionTypeDefinition(this, context);
}
public static Builder newUnionTypeDefinition() {
return new Builder();
}
public UnionTypeDefinition transform(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 directives = emptyList();
private ImmutableList memberTypes = emptyList();
private IgnoredChars ignoredChars = IgnoredChars.EMPTY;
private Map additionalData = new LinkedHashMap<>();
private Builder() {
}
private Builder(UnionTypeDefinition 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.memberTypes = ImmutableList.copyOf(existing.getMemberTypes());
this.ignoredChars = existing.getIgnoredChars();
}
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;
}
@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 memberTypes(List memberTypes) {
this.memberTypes = ImmutableList.copyOf(memberTypes);
return this;
}
public Builder memberType(Type memberType) {
this.memberTypes = ImmutableKit.addToList(memberTypes, memberType);
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 UnionTypeDefinition build() {
return new UnionTypeDefinition(name,
directives,
memberTypes,
description,
sourceLocation,
comments,
ignoredChars,
additionalData);
}
}
}