Module net.chesstango.goyeneche
Interface UciVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
UciBaseVisitor
public interface UciVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
UciParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byUciParser.author().Visit a parse tree produced byUciParser.binc().Visit a parse tree produced byUciParser.btime().Visit a parse tree produced byUciParser.command().Visit a parse tree produced byUciParser.depthparam().Visit a parse tree produced byUciParser.fen().Visit a parse tree produced byUciParser.go().Visit a parse tree produced byUciParser.id().Visit a parse tree produced byUciParser.move().Visit a parse tree produced byUciParser.movetime().Visit a parse tree produced byUciParser.name().Visit a parse tree produced byUciParser.option().Visit a parse tree produced byUciParser.optionname().Visit a parse tree produced byUciParser.optiontype().Visit a parse tree produced byUciParser.position().Visit a parse tree produced byUciParser.request().Visit a parse tree produced byUciParser.response().Visit a parse tree produced byUciParser.setoption().Visit a parse tree produced byUciParser.winc().Visit a parse tree produced byUciParser.wtime().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitCommand
Visit a parse tree produced byUciParser.command().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRequest
Visit a parse tree produced byUciParser.request().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetoption
Visit a parse tree produced byUciParser.setoption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPosition
Visit a parse tree produced byUciParser.position().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFen
Visit a parse tree produced byUciParser.fen().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGo
Visit a parse tree produced byUciParser.go().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDepthparam
Visit a parse tree produced byUciParser.depthparam().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMovetime
Visit a parse tree produced byUciParser.movetime().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWtime
Visit a parse tree produced byUciParser.wtime().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBtime
Visit a parse tree produced byUciParser.btime().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWinc
Visit a parse tree produced byUciParser.winc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinc
Visit a parse tree produced byUciParser.binc().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResponse
Visit a parse tree produced byUciParser.response().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitId
Visit a parse tree produced byUciParser.id().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName
Visit a parse tree produced byUciParser.name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAuthor
Visit a parse tree produced byUciParser.author().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMove
Visit a parse tree produced byUciParser.move().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOption
Visit a parse tree produced byUciParser.option().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionname
Visit a parse tree produced byUciParser.optionname().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptiontype
Visit a parse tree produced byUciParser.optiontype().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-