@PublicApi public class Field extends AbstractNode<Field> implements Selection<Field>, SelectionSetContainer<Field>, DirectivesContainer<Field>
| Modifier and Type | Class and Description |
|---|---|
static class |
Field.Builder |
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
CHILD_ARGUMENTS |
static java.lang.String |
CHILD_DIRECTIVES |
static java.lang.String |
CHILD_SELECTION_SET |
| Modifier | Constructor and Description |
|---|---|
|
Field(java.lang.String name)
alternative to using a Builder for convenience
|
|
Field(java.lang.String name,
java.util.List<Argument> arguments)
alternative to using a Builder for convenience
|
|
Field(java.lang.String name,
java.util.List<Argument> arguments,
SelectionSet selectionSet)
alternative to using a Builder for convenience
|
|
Field(java.lang.String name,
SelectionSet selectionSet)
alternative to using a Builder for convenience
|
protected |
Field(java.lang.String name,
java.lang.String alias,
java.util.List<Argument> arguments,
java.util.List<Directive> directives,
SelectionSet selectionSet,
SourceLocation sourceLocation,
java.util.List<Comment> comments,
IgnoredChars ignoredChars) |
| Modifier and Type | Method and Description |
|---|---|
TraversalControl |
accept(TraverserContext<Node> context,
NodeVisitor visitor)
Double-dispatch entry point.
|
Field |
deepCopy() |
java.lang.String |
getAlias() |
java.util.List<Argument> |
getArguments() |
java.util.List<Node> |
getChildren() |
java.util.List<Directive> |
getDirectives() |
java.lang.String |
getName() |
NodeChildrenContainer |
getNamedChildren()
Alternative to
Node.getChildren() where the children are not all in one list regardless of type
but grouped by name/type of the child. |
SelectionSet |
getSelectionSet() |
boolean |
isEqualTo(Node o)
Compares just the content and not the children.
|
static Field.Builder |
newField() |
static Field.Builder |
newField(java.lang.String name) |
static Field.Builder |
newField(java.lang.String name,
SelectionSet selectionSet) |
java.lang.String |
toString() |
Field |
transform(java.util.function.Consumer<Field.Builder> builderConsumer) |
Field |
withNewChildren(NodeChildrenContainer newChildren)
Replaces the specified children and returns a new Node.
|
deepCopy, deepCopy, getComments, getIgnoredChars, getSourceLocationclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetDirective, getDirectivesByNamegetComments, getIgnoredChars, getSourceLocationpublic static final java.lang.String CHILD_ARGUMENTS
public static final java.lang.String CHILD_DIRECTIVES
public static final java.lang.String CHILD_SELECTION_SET
protected Field(java.lang.String name,
java.lang.String alias,
java.util.List<Argument> arguments,
java.util.List<Directive> directives,
SelectionSet selectionSet,
SourceLocation sourceLocation,
java.util.List<Comment> comments,
IgnoredChars ignoredChars)
public Field(java.lang.String name)
name - of the fieldpublic Field(java.lang.String name,
java.util.List<Argument> arguments)
name - of the fieldarguments - to the fieldpublic Field(java.lang.String name,
java.util.List<Argument> arguments,
SelectionSet selectionSet)
name - of the fieldarguments - to the fieldselectionSet - of the fieldpublic Field(java.lang.String name,
SelectionSet selectionSet)
name - of the fieldselectionSet - of the fieldpublic java.util.List<Node> getChildren()
getChildren in interface Node<Field>public NodeChildrenContainer getNamedChildren()
NodeNode.getChildren() where the children are not all in one list regardless of type
but grouped by name/type of the child.getNamedChildren in interface Node<Field>public Field withNewChildren(NodeChildrenContainer newChildren)
NodewithNewChildren in interface Node<Field>newChildren - must be empty for Nodes without childrenpublic java.lang.String getName()
public java.lang.String getAlias()
public java.util.List<Argument> getArguments()
public java.util.List<Directive> getDirectives()
getDirectives in interface DirectivesContainer<Field>public SelectionSet getSelectionSet()
getSelectionSet in interface SelectionSetContainer<Field>public boolean isEqualTo(Node o)
Nodepublic Field deepCopy()
public java.lang.String toString()
toString in class java.lang.Objectpublic TraversalControl accept(TraverserContext<Node> context, NodeVisitor visitor)
NodeinstanceOf check when decision based on the actual
type of Node is needed, which happens redundantly during traversing AST.
Additional advantage of this pattern is to decouple tree traversal mechanism
from the code that needs to be executed when traversal "visits" a particular Node
in the tree. This leads to a better code re-usability and maintainability.accept in interface Node<Field>context - TraverserContext bound to this Node objectvisitor - Visitor instance that performs actual processing on the Nodes(s)public static Field.Builder newField()
public static Field.Builder newField(java.lang.String name)
public static Field.Builder newField(java.lang.String name, SelectionSet selectionSet)
public Field transform(java.util.function.Consumer<Field.Builder> builderConsumer)