Uses of Class
graphql.parser.ParserOptions
Packages that use ParserOptions
-
Uses of ParserOptions in graphql.parser
Fields in graphql.parser declared as ParserOptionsModifier and TypeFieldDescriptionprivate static ParserOptionsParserOptions.defaultJvmOperationParserOptionsprivate static ParserOptionsParserOptions.defaultJvmParserOptionsprivate static ParserOptionsParserOptions.defaultJvmSdlParserOptionsprivate final ParserOptionsGraphqlAntlrToLanguage.parserOptions(package private) ParserOptionsParserEnvironment.Builder.parserOptionsMethods in graphql.parser that return ParserOptionsModifier and TypeMethodDescriptionParserOptions.Builder.build()static ParserOptionsParserOptions.getDefaultOperationParserOptions()By default, for operation parsing, the Parser will not capture ignored characters, and it will not capture line comments into AST elements .static ParserOptionsParserOptions.getDefaultParserOptions()By default, the Parser will not capture ignored characters.static ParserOptionsParserOptions.getDefaultSdlParserOptions()By default, for SDL parsing, the Parser will not capture ignored characters, but it will capture line comments into AST elements.GraphqlAntlrToLanguage.getParserOptions()ParserEnvironment.getParserOptions()ParserOptions.transform(Consumer<ParserOptions.Builder> builderConsumer) Methods in graphql.parser with parameters of type ParserOptionsModifier and TypeMethodDescriptionprivate @NotNull SafeTokenSourceParser.getSafeTokenSource(ParserEnvironment environment, ParserOptions parserOptions, MultiSourceReader multiSourceReader, GraphqlLexer lexer) Parser.parseDocument(Reader reader, ParserOptions parserOptions) Deprecated.Parser.parseDocument(String input, ParserOptions parserOptions) Deprecated.use {#Parser.parse(ParserEnvironment)} insteadParserEnvironment.Builder.parserOptions(ParserOptions parserOptions) static voidParserOptions.setDefaultOperationParserOptions(ParserOptions options) By default, the Parser will not capture ignored characters or line comments.static voidParserOptions.setDefaultParserOptions(ParserOptions options) By default, the Parser will not capture ignored characters.static voidParserOptions.setDefaultSdlParserOptions(ParserOptions options) By default, for SDL parsing, the Parser will not capture ignored characters, but it will capture line comments into AST elements .private static MultiSourceReaderParser.setupMultiSourceReader(ParserEnvironment environment, ParserOptions parserOptions) private static @NotNull SafeTokenReaderParser.setupSafeTokenReader(ParserEnvironment environment, ParserOptions parserOptions, MultiSourceReader multiSourceReader) Constructors in graphql.parser with parameters of type ParserOptionsModifierConstructorDescription(package private)Builder(ParserOptions parserOptions) GraphqlAntlrToLanguage(org.antlr.v4.runtime.CommonTokenStream tokens, MultiSourceReader multiSourceReader, ParserOptions parserOptions, I18n i18N, @Nullable Map<Node<?>, org.antlr.v4.runtime.ParserRuleContext> nodeToRuleMap) -
Uses of ParserOptions in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type ParserOptionsModifier and TypeMethodDescriptionSchemaParser.parse(Reader reader, ParserOptions parserOptions) Parse a reader of schema definitions and create aTypeDefinitionRegistryprivate TypeDefinitionRegistrySchemaParser.parseImpl(Reader schemaInput, ParserOptions parseOptions)
Parser.parse(ParserEnvironment)} instead