graphql.language.Directive Maven / Gradle / Ivy
package graphql.language;
import graphql.Internal;
import graphql.PublicApi;
import graphql.util.TraversalControl;
import graphql.util.TraverserContext;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import static graphql.language.NodeUtil.argumentsByName;
@PublicApi
public class Directive extends AbstractNode implements NamedNode {
private final String name;
private final List arguments = new ArrayList<>();
@Internal
protected Directive(String name, List arguments, SourceLocation sourceLocation, List comments) {
super(sourceLocation, comments);
this.name = name;
this.arguments.addAll(arguments);
}
/**
* alternative to using a Builder for convenience
*/
public Directive(String name, List arguments) {
this(name, arguments, null, new ArrayList<>());
}
/**
* alternative to using a Builder for convenience
*/
public Directive(String name) {
this(name, new ArrayList<>(), null, new ArrayList<>());
}
public List getArguments() {
return new ArrayList<>(arguments);
}
public Map getArgumentsByName() {
// the spec says that args MUST be unique within context
return argumentsByName(arguments);
}
public Argument getArgument(String argumentName) {
return getArgumentsByName().get(argumentName);
}
@Override
public String getName() {
return name;
}
@Override
public List getChildren() {
return new ArrayList<>(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 NodeUtil.isEqualTo(this.name, that.name);
}
@Override
public Directive deepCopy() {
return new Directive(name, deepCopy(arguments), getSourceLocation(), getComments());
}
@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 List comments = new ArrayList<>();
private String name;
private List arguments = new ArrayList<>();
private Builder() {
}
private Builder(Directive existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = existing.getComments();
this.name = existing.getName();
this.arguments = existing.getArguments();
}
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 arguments(List arguments) {
this.arguments = arguments;
return this;
}
public Directive build() {
Directive directive = new Directive(name, arguments, sourceLocation, comments);
return directive;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy