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 interfaceThis represents a token that has been parsed -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ParsingListenerA NoOp implementation ofParsingListener -
Method Summary
Modifier and TypeMethodDescriptionvoidonToken(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
-