Class DefaultGremlinBaseVisitor<T>

java.lang.Object
org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
org.apache.tinkerpop.gremlin.language.grammar.DefaultGremlinBaseVisitor<T>
Type Parameters:
T - The return type of the visit operation. Use Void for operations with no return type.
All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>, GremlinVisitor<T>
Direct Known Subclasses:
ArgumentVisitor, GenericLiteralVisitor, GraphTraversalSourceVisitor, GremlinAntlrToJava, NestedTraversalSourceListVisitor, TraversalPredicateVisitor, TraversalRootVisitor, TraversalSourceSelfMethodVisitor, TraversalSourceSpawnMethodVisitor, TraversalSourceTxVisitor, TraversalStrategyVisitor, TraversalTerminalMethodVisitor, WithOptionsVisitor

public class DefaultGremlinBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements GremlinVisitor<T>
This class provides implementation of GremlinVisitor, where each method will throw UnsupportedOperationException. All the visitor class will extend this class, so that if there is method that are not manually implemented, and called, an exception will be thrown to help us catch bugs.