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 TraversalControl
GraphQLSchemaTraversalControl.Control. traversalControl
Constructors 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_QUIT
Methods in graphql.util that return TraversalControl Modifier and Type Method Description default TraversalControl
TraverserVisitor. backRef(TraverserContext<T> context)
This method is called when a node was already visited before.static <T> TraversalControl
TreeTransformerUtil. changeNode(TraverserContext<T> context, T changedNode)
Can be called multiple times to change the current node of the context.static <T> TraversalControl
TreeTransformerUtil. deleteNode(TraverserContext<T> context)
TraversalControl
TraverserVisitor. enter(TraverserContext<T> context)
TraversalControl
TraverserVisitorStub. enter(TraverserContext<T> context)
static <T> TraversalControl
TreeTransformerUtil. insertAfter(TraverserContext<T> context, T toInsertAfter)
static <T> TraversalControl
TreeTransformerUtil. insertBefore(TraverserContext<T> context, T toInsertBefore)
TraversalControl
TraverserVisitor. leave(TraverserContext<T> context)
TraversalControl
TraverserVisitorStub. leave(TraverserContext<T> context)
static TraversalControl
TraversalControl. 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.
-