graphql.language.VariableDefinition 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;
@PublicApi
public class VariableDefinition extends AbstractNode implements NamedNode {
private final String name;
private final Type type;
private final Value defaultValue;
@Internal
protected VariableDefinition(String name,
Type type,
Value defaultValue,
SourceLocation sourceLocation,
List comments) {
super(sourceLocation, comments);
this.name = name;
this.type = type;
this.defaultValue = defaultValue;
}
/**
* alternative to using a Builder for convenience
*
* @param name of the variable
* @param type of the variable
* @param defaultValue of the variable
*/
public VariableDefinition(String name,
Type type,
Value defaultValue) {
this(name, type, defaultValue, null, new ArrayList<>());
}
/**
* alternative to using a Builder for convenience
*
* @param name of the variable
* @param type of the variable
*/
public VariableDefinition(String name,
Type type) {
this(name, type, null, null, new ArrayList<>());
}
public Value getDefaultValue() {
return defaultValue;
}
public String getName() {
return name;
}
public Type getType() {
return type;
}
@Override
public List getChildren() {
List result = new ArrayList<>();
result.add(type);
if (defaultValue != null) result.add(defaultValue);
return result;
}
@Override
public boolean isEqualTo(Node o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
VariableDefinition that = (VariableDefinition) o;
return NodeUtil.isEqualTo(this.name, that.name);
}
@Override
public VariableDefinition deepCopy() {
return new VariableDefinition(name,
deepCopy(type),
deepCopy(defaultValue),
getSourceLocation(),
getComments()
);
}
@Override
public String toString() {
return "VariableDefinition{" +
"name='" + name + '\'' +
", type=" + type +
", defaultValue=" + defaultValue +
'}';
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitVariableDefinition(this, context);
}
public static Builder newVariableDefinition() {
return new Builder();
}
public static Builder newVariableDefinition(String name) {
return new Builder().name(name);
}
public static Builder newVariableDefinition(String name, Type type) {
return new Builder().name(name).type(type);
}
public static Builder newVariableDefinition(String name, Type type, Value defaultValue) {
return new Builder().name(name).type(type).defaultValue(defaultValue);
}
public VariableDefinition 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 String name;
private List comments = new ArrayList<>();
private Type type;
private Value defaultValue;
private Builder() {
}
private Builder(VariableDefinition existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = existing.getComments();
this.name = existing.getName();
this.type = existing.getType();
this.defaultValue = existing.getDefaultValue();
}
public Builder sourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
public Builder name(String name) {
this.name = name;
return this;
}
public Builder comments(List comments) {
this.comments = comments;
return this;
}
public Builder type(Type type) {
this.type = type;
return this;
}
public Builder defaultValue(Value defaultValue) {
this.defaultValue = defaultValue;
return this;
}
public VariableDefinition build() {
VariableDefinition variableDefinition = new VariableDefinition(
name,
type,
defaultValue,
sourceLocation,
comments
);
return variableDefinition;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy