graphql.language.BooleanValue 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 BooleanValue extends AbstractNode implements ScalarValue {
private final boolean value;
@Internal
protected BooleanValue(boolean value, SourceLocation sourceLocation, List comments) {
super(sourceLocation, comments);
this.value = value;
}
/**
* alternative to using a Builder for convenience
*
* @param value
*/
public BooleanValue(boolean value) {
super(null, new ArrayList<>());
this.value = value;
}
public boolean isValue() {
return value;
}
@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;
BooleanValue that = (BooleanValue) o;
return value == that.value;
}
@Override
public BooleanValue deepCopy() {
return new BooleanValue(value, getSourceLocation(), getComments());
}
@Override
public String toString() {
return "BooleanValue{" +
"value=" + value +
'}';
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitBooleanValue(this, context);
}
public static Builder newBooleanValue() {
return new Builder();
}
public static Builder newBooleanValue(boolean value) {
return new Builder().value(value);
}
public BooleanValue 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 boolean value;
private List comments = new ArrayList<>();
private Builder() {
}
private Builder(BooleanValue existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = existing.getComments();
this.value = existing.isValue();
}
public Builder sourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
public Builder value(boolean value) {
this.value = value;
return this;
}
public Builder comments(List comments) {
this.comments = comments;
return this;
}
public BooleanValue build() {
BooleanValue booleanValue = new BooleanValue(value, sourceLocation, comments);
return booleanValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy