graphql.language.ArrayValue 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 ArrayValue extends AbstractNode implements Value {
private final List values = new ArrayList<>();
@Internal
protected ArrayValue(List values, SourceLocation sourceLocation, List comments) {
super(sourceLocation, comments);
this.values.addAll(values);
}
/**
* alternative to using a Builder for convenience
*
* @param values of the array
*/
public ArrayValue(List values) {
super(null, new ArrayList<>());
this.values.addAll(values);
}
public List getValues() {
return values;
}
@Override
public List getChildren() {
return new ArrayList<>(values);
}
@Override
public boolean isEqualTo(Node o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
return true;
}
@Override
public String toString() {
return "ArrayValue{" +
"values=" + values +
'}';
}
@Override
public ArrayValue deepCopy() {
return new ArrayValue(deepCopy(values), getSourceLocation(), getComments());
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitArrayValue(this, context);
}
public static Builder newArrayValue() {
return new Builder();
}
public ArrayValue 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 values = new ArrayList<>();
private List comments = new ArrayList<>();
private Builder() {
}
private Builder(ArrayValue existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = existing.getComments();
this.values = existing.getValues();
}
public Builder sourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
public Builder values(List values) {
this.values = values;
return this;
}
public Builder value(Value value) {
this.values.add(value);
return this;
}
public Builder comments(List comments) {
this.comments = comments;
return this;
}
public ArrayValue build() {
ArrayValue arrayValue = new ArrayValue(values, sourceLocation, comments);
return arrayValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy