Uses of Interface
graphql.util.NodeAdapter
-
Packages that use NodeAdapter Package Description graphql.language graphql.schema graphql.util -
-
Uses of NodeAdapter in graphql.language
Classes in graphql.language that implement NodeAdapter Modifier and Type Class Description class
AstNodeAdapter
Adapts an Ast node to the general node from the util package -
Uses of NodeAdapter in graphql.schema
Classes in graphql.schema that implement NodeAdapter Modifier and Type Class Description class
GraphQLSchemaElementAdapter
-
Uses of NodeAdapter in graphql.util
Fields in graphql.util declared as NodeAdapter Modifier and Type Field Description private NodeAdapter<T>
NodeMultiZipper. nodeAdapter
private NodeAdapter<T>
NodeZipper. nodeAdapter
private NodeAdapter<T>
TreeParallelTransformer. nodeAdapter
private NodeAdapter<T>
TreeTransformer. nodeAdapter
Methods in graphql.util with parameters of type NodeAdapter Modifier and Type Method Description static <T> NodeMultiZipper<T>
NodeMultiZipper. newNodeMultiZipperTrusted(T commonRoot, java.util.List<NodeZipper<T>> zippers, NodeAdapter<T> nodeAdapter)
static <T> TreeParallelTransformer<T>
TreeParallelTransformer. parallelTransformer(NodeAdapter<T> nodeAdapter)
static <T> TreeParallelTransformer<T>
TreeParallelTransformer. parallelTransformer(NodeAdapter<T> nodeAdapter, java.util.concurrent.ForkJoinPool forkJoinPool)
static <T> NodeZipper<T>
NodeZipper. rootZipper(T rootNode, NodeAdapter<T> nodeAdapter)
Constructors in graphql.util with parameters of type NodeAdapter Constructor Description NodeMultiZipper(T commonRoot, java.util.List<NodeZipper<T>> zippers, NodeAdapter<T> nodeAdapter)
NodeMultiZipper(T commonRoot, java.util.List<NodeZipper<T>> zippers, NodeAdapter<T> nodeAdapter, java.lang.Object dummy)
NodeZipper(T curNode, java.util.List<Breadcrumb<T>> breadcrumbs, NodeAdapter<T> nodeAdapter)
NodeZipper(T curNode, java.util.List<Breadcrumb<T>> breadcrumbs, NodeAdapter<T> nodeAdapter, NodeZipper.ModificationType modificationType)
TreeParallelTransformer(java.lang.Object sharedContextData, java.util.concurrent.ForkJoinPool forkJoinPool, NodeAdapter<T> nodeAdapter)
TreeTransformer(NodeAdapter<T> nodeAdapter)
-