Package graphql.parser
Interface ParsingListener
This listener interface is invoked for each token parsed by the graphql parser code.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
This represents a token that has been parsed -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ParsingListener
A NoOp implementation ofParsingListener
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onToken
(ParsingListener.Token token) This is called for each token found during parsing
-
Field Details
-
NOOP
A NoOp implementation ofParsingListener
-
-
Method Details
-
onToken
This is called for each token found during parsing- Parameters:
token
- the token found
-