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.Directive 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.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;
import static graphql.language.NodeUtil.nodeByName;
@PublicApi
public class Directive extends AbstractNode implements NamedNode {
private final String name;
private final ImmutableList arguments;
public static final String CHILD_ARGUMENTS = "arguments";
@Internal
protected Directive(String name, List arguments, SourceLocation sourceLocation, List comments, IgnoredChars ignoredChars, Map additionalData) {
super(sourceLocation, comments, ignoredChars, additionalData);
this.name = name;
this.arguments = ImmutableList.copyOf(arguments);
}
/**
* alternative to using a Builder for convenience
*
* @param name of the directive
* @param arguments of the directive
*/
public Directive(String name, List arguments) {
this(name, arguments, null, emptyList(), IgnoredChars.EMPTY, emptyMap());
}
/**
* alternative to using a Builder for convenience
*
* @param name of the directive
*/
public Directive(String name) {
this(name, emptyList(), null, emptyList(), IgnoredChars.EMPTY, emptyMap());
}
public List getArguments() {
return arguments;
}
public Map getArgumentsByName() {
// the spec says that args MUST be unique within context
return nodeByName(arguments);
}
public Argument getArgument(String argumentName) {
return NodeUtil.findNodeByName(arguments, argumentName);
}
@Override
public String getName() {
return name;
}
@Override
public List getChildren() {
return ImmutableList.copyOf(arguments);
}
@Override
public NodeChildrenContainer getNamedChildren() {
return newNodeChildrenContainer()
.children(CHILD_ARGUMENTS, arguments)
.build();
}
@Override
public Directive withNewChildren(NodeChildrenContainer newChildren) {
return transform(builder -> builder
.arguments(newChildren.getChildren(CHILD_ARGUMENTS))
);
}
@Override
public boolean isEqualTo(Node o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Directive that = (Directive) o;
return Objects.equals(this.name, that.name);
}
@Override
public Directive deepCopy() {
return new Directive(name, deepCopy(arguments), getSourceLocation(), getComments(), getIgnoredChars(), getAdditionalData());
}
@Override
public String toString() {
return "Directive{" +
"name='" + name + '\'' +
", arguments=" + arguments +
'}';
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitDirective(this, context);
}
public static Builder newDirective() {
return new Builder();
}
public Directive transform(Consumer builderConsumer) {
Builder builder = new Builder(this);
builderConsumer.accept(builder);
return builder.build();
}
public static final class Builder implements NodeBuilder {
private SourceLocation sourceLocation;
private ImmutableList comments = emptyList();
private String name;
private ImmutableList arguments = emptyList();
private IgnoredChars ignoredChars = IgnoredChars.EMPTY;
private Map additionalData = new LinkedHashMap<>();
private Builder() {
}
private Builder(Directive existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = ImmutableList.copyOf(existing.getComments());
this.name = existing.getName();
this.arguments = ImmutableList.copyOf(existing.getArguments());
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 arguments(List arguments) {
this.arguments = ImmutableList.copyOf(arguments);
return this;
}
public Builder argument(Argument argument) {
this.arguments = ImmutableKit.addToList(arguments,argument);
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 Directive build() {
return new Directive(name, arguments, sourceLocation, comments, ignoredChars, additionalData);
}
}
}