graphql.language.InlineFragment 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.Map;
import java.util.function.Consumer;
import static graphql.language.NodeUtil.directivesByName;
@PublicApi
public class InlineFragment extends AbstractNode implements Selection, SelectionSetContainer {
private final TypeName typeCondition;
private final List directives;
private final SelectionSet selectionSet;
@Internal
protected InlineFragment(TypeName typeCondition,
List directives,
SelectionSet selectionSet,
SourceLocation sourceLocation,
List comments,
IgnoredChars ignoredChars) {
super(sourceLocation, comments, ignoredChars);
this.typeCondition = typeCondition;
this.directives = directives;
this.selectionSet = selectionSet;
}
/**
* alternative to using a Builder for convenience
*
* @param typeCondition the type condition of the inline fragment
*/
public InlineFragment(TypeName typeCondition) {
this(typeCondition, new ArrayList<>(), null, null, new ArrayList<>(), IgnoredChars.EMPTY);
}
/**
* alternative to using a Builder for convenience
*
* @param typeCondition the type condition of the inline fragment
* @param selectionSet of the inline fragment
*/
public InlineFragment(TypeName typeCondition, SelectionSet selectionSet) {
this(typeCondition, new ArrayList<>(), selectionSet, null, new ArrayList<>(), IgnoredChars.EMPTY);
}
public TypeName getTypeCondition() {
return typeCondition;
}
public List getDirectives() {
return new ArrayList<>(directives);
}
public Map getDirectivesByName() {
return directivesByName(directives);
}
public Directive getDirective(String directiveName) {
return getDirectivesByName().get(directiveName);
}
@Override
public SelectionSet getSelectionSet() {
return selectionSet;
}
@Override
public List getChildren() {
List result = new ArrayList<>();
if (typeCondition != null) {
result.add(typeCondition);
}
result.addAll(directives);
result.add(selectionSet);
return result;
}
@Override
public boolean isEqualTo(Node o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
return true;
}
@Override
public InlineFragment deepCopy() {
return new InlineFragment(
deepCopy(typeCondition),
deepCopy(directives),
deepCopy(selectionSet),
getSourceLocation(),
getComments(),
getIgnoredChars()
);
}
@Override
public String toString() {
return "InlineFragment{" +
"typeCondition='" + typeCondition + '\'' +
", directives=" + directives +
", selectionSet=" + selectionSet +
'}';
}
@Override
public TraversalControl accept(TraverserContext context, NodeVisitor visitor) {
return visitor.visitInlineFragment(this, context);
}
public static Builder newInlineFragment() {
return new Builder();
}
public InlineFragment 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 comments = new ArrayList<>();
private TypeName typeCondition;
private List directives = new ArrayList<>();
private SelectionSet selectionSet;
private IgnoredChars ignoredChars = IgnoredChars.EMPTY;
private Builder() {
}
private Builder(InlineFragment existing) {
this.sourceLocation = existing.getSourceLocation();
this.comments = existing.getComments();
this.typeCondition = existing.getTypeCondition();
this.directives = existing.getDirectives();
this.selectionSet = existing.getSelectionSet();
this.ignoredChars = existing.getIgnoredChars();
}
public Builder sourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
public Builder comments(List comments) {
this.comments = comments;
return this;
}
public Builder typeCondition(TypeName typeCondition) {
this.typeCondition = typeCondition;
return this;
}
public Builder directives(List directives) {
this.directives = directives;
return this;
}
public Builder selectionSet(SelectionSet selectionSet) {
this.selectionSet = selectionSet;
return this;
}
public Builder ignoredChars(IgnoredChars ignoredChars) {
this.ignoredChars = ignoredChars;
return this;
}
public InlineFragment build() {
InlineFragment inlineFragment = new InlineFragment(typeCondition, directives, selectionSet, sourceLocation, comments, ignoredChars);
return inlineFragment;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy