Interface KGCLVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
KGCLBaseVisitor
,ParseTree2ChangeVisitor
public interface KGCLVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
KGCLParser
.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byKGCLParser.addSubset()
.Visit a parse tree produced byKGCLParser.change()
.Visit a parse tree produced byKGCLParser.changeAnnotation()
.Visit a parse tree produced byKGCLParser.changeDefinition()
.Visit a parse tree produced byKGCLParser.changePredicate()
.Visit a parse tree produced byKGCLParser.changeset()
.Visit a parse tree produced byKGCLParser.changeSynonym()
.Visit a parse tree produced byKGCLParser.delete()
.Visit a parse tree produced byKGCLParser.deleteEdge()
.Visit a parse tree produced by theIdAsCURIE
labeled alternative inKGCLParser.id()
.Visit a parse tree produced by theIdAsIRI
labeled alternative inKGCLParser.id()
.Visit a parse tree produced by theIdAsLabel
labeled alternative inKGCLParser.id()
.Visit a parse tree produced byKGCLParser.idlist()
.Visit a parse tree produced byKGCLParser.move()
.Visit a parse tree produced byKGCLParser.newDefinition()
.Visit a parse tree produced byKGCLParser.newEdge()
.Visit a parse tree produced byKGCLParser.newNode()
.Visit a parse tree produced byKGCLParser.newSynonym()
.Visit a parse tree produced byKGCLParser.nodeType()
.Visit a parse tree produced by theObsoleteNoReplacement
labeled alternative inKGCLParser.obsolete()
.Visit a parse tree produced by theObsoleteWithAlternative
labeled alternative inKGCLParser.obsolete()
.Visit a parse tree produced by theObsoleteWithReplacement
labeled alternative inKGCLParser.obsolete()
.Visit a parse tree produced byKGCLParser.qualifier()
.Visit a parse tree produced byKGCLParser.removeDefinition()
.Visit a parse tree produced byKGCLParser.removeSubset()
.Visit a parse tree produced byKGCLParser.removeSynonym()
.Visit a parse tree produced byKGCLParser.rename()
.Visit a parse tree produced byKGCLParser.string()
.Visit a parse tree produced byKGCLParser.text()
.Visit a parse tree produced byKGCLParser.typetag()
.Visit a parse tree produced byKGCLParser.unobsolete()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitChangeset
Visit a parse tree produced byKGCLParser.changeset()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitChange
Visit a parse tree produced byKGCLParser.change()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRename
Visit a parse tree produced byKGCLParser.rename()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitObsoleteNoReplacement
Visit a parse tree produced by theObsoleteNoReplacement
labeled alternative inKGCLParser.obsolete()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitObsoleteWithReplacement
Visit a parse tree produced by theObsoleteWithReplacement
labeled alternative inKGCLParser.obsolete()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitObsoleteWithAlternative
Visit a parse tree produced by theObsoleteWithAlternative
labeled alternative inKGCLParser.obsolete()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitUnobsolete
Visit a parse tree produced byKGCLParser.unobsolete()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDelete
Visit a parse tree produced byKGCLParser.delete()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNewSynonym
Visit a parse tree produced byKGCLParser.newSynonym()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRemoveSynonym
Visit a parse tree produced byKGCLParser.removeSynonym()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitChangeSynonym
Visit a parse tree produced byKGCLParser.changeSynonym()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNewDefinition
Visit a parse tree produced byKGCLParser.newDefinition()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRemoveDefinition
Visit a parse tree produced byKGCLParser.removeDefinition()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitChangeDefinition
Visit a parse tree produced byKGCLParser.changeDefinition()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNewNode
Visit a parse tree produced byKGCLParser.newNode()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNewEdge
Visit a parse tree produced byKGCLParser.newEdge()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDeleteEdge
Visit a parse tree produced byKGCLParser.deleteEdge()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitChangePredicate
Visit a parse tree produced byKGCLParser.changePredicate()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitChangeAnnotation
Visit a parse tree produced byKGCLParser.changeAnnotation()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMove
Visit a parse tree produced byKGCLParser.move()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitAddSubset
Visit a parse tree produced byKGCLParser.addSubset()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRemoveSubset
Visit a parse tree produced byKGCLParser.removeSubset()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIdlist
Visit a parse tree produced byKGCLParser.idlist()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIdAsIRI
Visit a parse tree produced by theIdAsIRI
labeled alternative inKGCLParser.id()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIdAsCURIE
Visit a parse tree produced by theIdAsCURIE
labeled alternative inKGCLParser.id()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitIdAsLabel
Visit a parse tree produced by theIdAsLabel
labeled alternative inKGCLParser.id()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNodeType
Visit a parse tree produced byKGCLParser.nodeType()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitText
Visit a parse tree produced byKGCLParser.text()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitString
Visit a parse tree produced byKGCLParser.string()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQualifier
Visit a parse tree produced byKGCLParser.qualifier()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTypetag
Visit a parse tree produced byKGCLParser.typetag()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-