@PublicApi public class SelectionSet extends AbstractNode<SelectionSet>
Modifier and Type | Class and Description |
---|---|
static class |
SelectionSet.Builder |
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CHILD_SELECTIONS |
Modifier | Constructor and Description |
---|---|
|
SelectionSet(java.util.Collection<? extends Selection> selections)
alternative to using a Builder for convenience
|
protected |
SelectionSet(java.util.Collection<? extends Selection> selections,
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.
|
SelectionSet |
deepCopy() |
java.util.List<Node> |
getChildren() |
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.util.List<Selection> |
getSelections() |
<T extends Selection> |
getSelectionsOfType(java.lang.Class<T> selectionClass)
Returns a list of selections of the specific type.
|
boolean |
isEqualTo(Node o)
Compares just the content and not the children.
|
static SelectionSet.Builder |
newSelectionSet() |
static SelectionSet.Builder |
newSelectionSet(java.util.Collection<? extends Selection> selections) |
java.lang.String |
toString() |
SelectionSet |
transform(java.util.function.Consumer<SelectionSet.Builder> builderConsumer) |
SelectionSet |
withNewChildren(NodeChildrenContainer newChildren)
Replaces the specified children and returns a new Node.
|
deepCopy, deepCopy, getAdditionalData, getComments, getIgnoredChars, getSourceLocation
public static final java.lang.String CHILD_SELECTIONS
protected SelectionSet(java.util.Collection<? extends Selection> selections, SourceLocation sourceLocation, java.util.List<Comment> comments, IgnoredChars ignoredChars, java.util.Map<java.lang.String,java.lang.String> additionalData)
public SelectionSet(java.util.Collection<? extends Selection> selections)
selections
- the list of selection in this selection setpublic java.util.List<Selection> getSelections()
public <T extends Selection> java.util.List<T> getSelectionsOfType(java.lang.Class<T> selectionClass)
Class.isAssignableFrom(Class)
for the testT
- the type of selectionselectionClass
- the selection classpublic java.util.List<Node> getChildren()
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.public SelectionSet withNewChildren(NodeChildrenContainer newChildren)
Node
newChildren
- must be empty for Nodes without childrenpublic boolean isEqualTo(Node o)
Node
o
- the other node to compare topublic SelectionSet 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.context
- TraverserContext bound to this Node objectvisitor
- Visitor instance that performs actual processing on the Nodes(s)public static SelectionSet.Builder newSelectionSet()
public static SelectionSet.Builder newSelectionSet(java.util.Collection<? extends Selection> selections)
public SelectionSet transform(java.util.function.Consumer<SelectionSet.Builder> builderConsumer)