@PublicApi public class Field extends AbstractNode<Field> implements Selection<Field>, SelectionSetContainer<Field>, DirectivesContainer<Field>, NamedNode<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,
java.util.Map<java.lang.String,java.lang.String> additionalData) |
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()
This will return a list of all the directives that have been put on
Node as a flat list, which may contain repeatable
and non repeatable directives. |
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. |
java.lang.String |
getResultKey() |
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, getAdditionalData, getComments, getIgnoredChars, getSourceLocation
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getDirectives, getDirectivesByName, hasDirective
getAdditionalData, getComments, getIgnoredChars, getSourceLocation
public 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, java.util.Map<java.lang.String,java.lang.String> additionalData)
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()
Node
Node.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)
Node
withNewChildren
in interface Node<Field>
newChildren
- must be empty for Nodes without childrenpublic java.lang.String getName()
public java.lang.String getAlias()
public java.lang.String getResultKey()
public java.util.List<Argument> getArguments()
public java.util.List<Directive> getDirectives()
DirectivesContainer
Node
as a flat list, which may contain repeatable
and non repeatable directives.getDirectives
in interface DirectivesContainer<Field>
public SelectionSet getSelectionSet()
getSelectionSet
in interface SelectionSetContainer<Field>
public boolean isEqualTo(Node o)
Node
public Field deepCopy()
public java.lang.String toString()
toString
in class java.lang.Object
public TraversalControl accept(TraverserContext<Node> context, NodeVisitor visitor)
Node
instanceOf
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)