Package graphql.util
Class TraverserVisitorStub<T>
- java.lang.Object
-
- graphql.util.TraverserVisitorStub<T>
-
- All Implemented Interfaces:
TraverserVisitor<T>
public class TraverserVisitorStub<T> extends java.lang.Object implements TraverserVisitor<T>
-
-
Constructor Summary
Constructors Constructor Description TraverserVisitorStub()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TraversalControlenter(TraverserContext<T> context)TraversalControlleave(TraverserContext<T> context)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface graphql.util.TraverserVisitor
backRef
-
-
-
-
Method Detail
-
enter
public TraversalControl enter(TraverserContext<T> context)
- Specified by:
enterin interfaceTraverserVisitor<T>- Parameters:
context- the context in place- Returns:
- Any allowed control value
-
leave
public TraversalControl leave(TraverserContext<T> context)
- Specified by:
leavein interfaceTraverserVisitor<T>- Parameters:
context- the context in place- Returns:
- Only Continue or Quit allowed
-
-