Uses of Class
graphql.util.TraversalControl
-
Packages that use TraversalControl Package Description graphql.analysis graphql.language graphql.schema graphql.schema.idl graphql.schema.impl graphql.schema.transform graphql.schema.validation graphql.schema.visitor graphql.util -
-
Uses of TraversalControl in graphql.analysis
-
Uses of TraversalControl in graphql.language
-
Uses of TraversalControl in graphql.schema
-
Uses of TraversalControl in graphql.schema.idl
-
Uses of TraversalControl in graphql.schema.impl
-
Uses of TraversalControl in graphql.schema.transform
-
Uses of TraversalControl in graphql.schema.validation
-
Uses of TraversalControl in graphql.schema.visitor
Fields in graphql.schema.visitor declared as TraversalControl Modifier and Type Field Description private TraversalControlGraphQLSchemaTraversalControl.Control. traversalControlConstructors in graphql.schema.visitor with parameters of type TraversalControl Constructor Description Control(TraversalControl traversalControl) -
Uses of TraversalControl in graphql.util
Fields in graphql.util with type parameters of type TraversalControl Modifier and Type Field Description private static java.util.List<TraversalControl>Traverser. CONTINUE_OR_QUITMethods in graphql.util that return TraversalControl Modifier and Type Method Description default TraversalControlTraverserVisitor. backRef(TraverserContext<T> context)This method is called when a node was already visited before.static <T> TraversalControlTreeTransformerUtil. changeNode(TraverserContext<T> context, T changedNode)Can be called multiple times to change the current node of the context.static <T> TraversalControlTreeTransformerUtil. deleteNode(TraverserContext<T> context)TraversalControlTraverserVisitor. enter(TraverserContext<T> context)TraversalControlTraverserVisitorStub. enter(TraverserContext<T> context)static <T> TraversalControlTreeTransformerUtil. insertAfter(TraverserContext<T> context, T toInsertAfter)static <T> TraversalControlTreeTransformerUtil. insertBefore(TraverserContext<T> context, T toInsertBefore)TraversalControlTraverserVisitor. leave(TraverserContext<T> context)TraversalControlTraverserVisitorStub. leave(TraverserContext<T> context)static TraversalControlTraversalControl. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TraversalControl[]TraversalControl. values()Returns an array containing the constants of this enum type, in the order they are declared.
-