graphql.language.DirectiveLocation 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.function.Consumer;
// This should probably be an enum... but the grammar
// doesn't enforce the names. These are the current names:
// QUERY
// MUTATION
// FIELD
// FRAGMENT_DEFINITION
// FRAGMENT_SPREAD
// INLINE_FRAGMENT
@PublicApi
public class DirectiveLocation extends AbstractNode implements NamedNode {
private final String name;
@Internal
protected DirectiveLocation(String name, SourceLocation sourceLocation, List comments) {
super(sourceLocation, comments);
this.name = name;
}
/**
* alternative to using a Builder for convenience
*/
public DirectiveLocation(String name) {
this(name, null, new ArrayList<>());
}
@Override
public String getName() {
return name;
}
@Override
public List getChildren() {
return new ArrayList<>();
}
@Override
public boolean isEqualTo(Node o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DirectiveLocation that = (DirectiveLocation) o;
return NodeUtil.isEqualTo(this.name, that.name);
}
@Override
public DirectiveLocation deepCopy() {
return new DirectiveLocation(name, getSourceLocation(), getComments());
}
@Override
public String toString() {
return "DirectiveLocation{" +
"name='" + name + "'" +
"}";
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitDirectiveLocation(this, context);
}
public static Builder newDirectiveLocation() {
return new Builder();
}
public DirectiveLocation 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 Builder() {
}
private Builder(DirectiveLocation existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = existing.getComments();
this.name = existing.getName();
}
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 DirectiveLocation build() {
DirectiveLocation directiveLocation = new DirectiveLocation(name, sourceLocation, comments);
return directiveLocation;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy