Uses of Class
graphql.parser.ParserOptions
-
Packages that use ParserOptions Package Description graphql.parser graphql.schema.idl -
-
Uses of ParserOptions in graphql.parser
Fields in graphql.parser declared as ParserOptions Modifier and Type Field Description private static ParserOptionsParserOptions. defaultJvmOperationParserOptionsprivate static ParserOptionsParserOptions. defaultJvmParserOptionsprivate static ParserOptionsParserOptions. defaultJvmSdlParserOptionsprivate ParserOptionsGraphqlAntlrToLanguage. parserOptions(package private) ParserOptionsParserEnvironment.Builder. parserOptionsMethods in graphql.parser that return ParserOptions Modifier and Type Method Description ParserOptionsParserOptions.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.ParserOptionsGraphqlAntlrToLanguage. getParserOptions()ParserOptionsParserEnvironment. getParserOptions()ParserOptionsParserOptions. transform(java.util.function.Consumer<ParserOptions.Builder> builderConsumer)Methods in graphql.parser with parameters of type ParserOptions Modifier and Type Method Description private @NotNull SafeTokenSourceParser. getSafeTokenSource(ParserEnvironment environment, ParserOptions parserOptions, MultiSourceReader multiSourceReader, GraphqlLexer lexer)DocumentParser. parseDocument(java.io.Reader reader, ParserOptions parserOptions)Deprecated.use {#Parser.parse(ParserEnvironment)} insteadDocumentParser. parseDocument(java.lang.String input, ParserOptions parserOptions)Deprecated.use {#Parser.parse(ParserEnvironment)} insteadParserEnvironment.BuilderParserEnvironment.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 ParserOptions Constructor Description Builder(ParserOptions parserOptions)GraphqlAntlrToLanguage(org.antlr.v4.runtime.CommonTokenStream tokens, MultiSourceReader multiSourceReader, ParserOptions parserOptions, I18n i18N, @Nullable java.util.Map<Node<?>,org.antlr.v4.runtime.ParserRuleContext> nodeToRuleMap) -
Uses of ParserOptions in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type ParserOptions Modifier and Type Method Description TypeDefinitionRegistrySchemaParser. parse(java.io.Reader reader, ParserOptions parserOptions)Parse a reader of schema definitions and create aTypeDefinitionRegistryprivate TypeDefinitionRegistrySchemaParser. parseImpl(java.io.Reader schemaInput, ParserOptions parseOptions)
-