graphql.language.EnumValue 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 EnumValue extends AbstractNode implements Value, NamedNode {
private final String name;
@Internal
protected EnumValue(String name, SourceLocation sourceLocation, List comments, IgnoredChars ignoredChars) {
super(sourceLocation, comments, ignoredChars);
this.name = name;
}
/**
* alternative to using a Builder for convenience
*
* @param name of the enum value
*/
public EnumValue(String name) {
this(name, null, new ArrayList<>(), IgnoredChars.EMPTY);
}
@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;
}
EnumValue that = (EnumValue) o;
return NodeUtil.isEqualTo(this.name, that.name);
}
@Override
public EnumValue deepCopy() {
return new EnumValue(name, getSourceLocation(), getComments(), getIgnoredChars());
}
@Override
public String toString() {
return "EnumValue{" +
"name='" + name + '\'' +
'}';
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitEnumValue(this, context);
}
public static Builder newEnumValue() {
return new Builder();
}
public static Builder newEnumValue(String name) {
return new Builder().name(name);
}
public EnumValue 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 IgnoredChars ignoredChars = IgnoredChars.EMPTY;
private Builder() {
}
private Builder(EnumValue 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 name(String name) {
this.name = name;
return this;
}
public Builder comments(List comments) {
this.comments = comments;
return this;
}
public Builder ignoredChars(IgnoredChars ignoredChars) {
this.ignoredChars = ignoredChars;
return this;
}
public EnumValue build() {
EnumValue enumValue = new EnumValue(name, sourceLocation, comments, ignoredChars);
return enumValue;
}
}
}