StringValue.java
package graphql.language;
import com.google.common.collect.ImmutableList;
import graphql.Internal;
import graphql.PublicApi;
import graphql.util.TraversalControl;
import graphql.util.TraverserContext;
import org.jspecify.annotations.NullMarked;
import org.jspecify.annotations.Nullable;
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.assertNewChildrenAreEmpty;
@PublicApi
@NullMarked
public class StringValue extends AbstractNode<StringValue> implements ScalarValue<StringValue> {
private final @Nullable String value;
@Internal
protected StringValue(@Nullable String value, @Nullable SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) {
super(sourceLocation, comments, ignoredChars, additionalData);
this.value = value;
}
/**
* alternative to using a Builder for convenience
*
* @param value of the String
*/
public StringValue(String value) {
this(value, null, emptyList(), IgnoredChars.EMPTY, emptyMap());
}
public @Nullable String getValue() {
return value;
}
@Override
public List<Node> getChildren() {
return emptyList();
}
@Override
public NodeChildrenContainer getNamedChildren() {
return newNodeChildrenContainer().build();
}
@Override
public StringValue withNewChildren(NodeChildrenContainer newChildren) {
assertNewChildrenAreEmpty(newChildren);
return this;
}
@Override
public String toString() {
return "StringValue{" +
"value='" + value + '\'' +
'}';
}
@Override
public boolean isEqualTo(@Nullable Node o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
StringValue that = (StringValue) o;
return Objects.equals(value, that.value);
}
@Override
public StringValue deepCopy() {
return new StringValue(value, getSourceLocation(), getComments(), getIgnoredChars(), getAdditionalData());
}
@Override
public TraversalControl accept(TraverserContext<Node> context, NodeVisitor visitor) {
return visitor.visitStringValue(this, context);
}
public static StringValue of(String value) {
return StringValue.newStringValue(value).build();
}
public static Builder newStringValue() {
return new Builder();
}
public static Builder newStringValue(String value) {
return new Builder().value(value);
}
public StringValue transform(Consumer<Builder> builderConsumer) {
Builder builder = new Builder(this);
builderConsumer.accept(builder);
return builder.build();
}
public static final class Builder implements NodeBuilder {
private @Nullable SourceLocation sourceLocation;
private @Nullable String value;
private ImmutableList<Comment> comments = emptyList();
private IgnoredChars ignoredChars = IgnoredChars.EMPTY;
private Map<String, String> additionalData = new LinkedHashMap<>();
private Builder() {
}
private Builder(StringValue existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = ImmutableList.copyOf(existing.getComments());
this.value = existing.getValue();
this.ignoredChars = existing.getIgnoredChars();
this.additionalData = new LinkedHashMap<>(existing.getAdditionalData());
}
public Builder sourceLocation(@Nullable SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
public Builder value(@Nullable String value) {
this.value = value;
return this;
}
public Builder comments(List<Comment> comments) {
this.comments = ImmutableList.copyOf(comments);
return this;
}
public Builder ignoredChars(IgnoredChars ignoredChars) {
this.ignoredChars = ignoredChars;
return this;
}
public Builder additionalData(Map<String, String> additionalData) {
this.additionalData = assertNotNull(additionalData);
return this;
}
public Builder additionalData(String key, String value) {
this.additionalData.put(key, value);
return this;
}
public StringValue build() {
return new StringValue(value, sourceLocation, comments, ignoredChars, additionalData);
}
}
}