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 ParserOptions
ParserOptions. defaultJvmOperationParserOptions
private static ParserOptions
ParserOptions. defaultJvmParserOptions
private static ParserOptions
ParserOptions. defaultJvmSdlParserOptions
private ParserOptions
GraphqlAntlrToLanguage. parserOptions
(package private) ParserOptions
ParserEnvironment.Builder. parserOptions
Methods in graphql.parser that return ParserOptions Modifier and Type Method Description ParserOptions
ParserOptions.Builder. build()
static ParserOptions
ParserOptions. getDefaultOperationParserOptions()
By default, for operation parsing, the Parser will not capture ignored characters, and it will not capture line comments into AST elements .static ParserOptions
ParserOptions. getDefaultParserOptions()
By default, the Parser will not capture ignored characters.static ParserOptions
ParserOptions. getDefaultSdlParserOptions()
By default, for SDL parsing, the Parser will not capture ignored characters, but it will capture line comments into AST elements.ParserOptions
GraphqlAntlrToLanguage. getParserOptions()
ParserOptions
ParserEnvironment. getParserOptions()
ParserOptions
ParserOptions. transform(java.util.function.Consumer<ParserOptions.Builder> builderConsumer)
Methods in graphql.parser with parameters of type ParserOptions Modifier and Type Method Description private @NotNull SafeTokenSource
Parser. getSafeTokenSource(ParserEnvironment environment, ParserOptions parserOptions, MultiSourceReader multiSourceReader, GraphqlLexer lexer)
Document
Parser. parseDocument(java.io.Reader reader, ParserOptions parserOptions)
Deprecated.use {#Parser.parse(ParserEnvironment)
} insteadDocument
Parser. parseDocument(java.lang.String input, ParserOptions parserOptions)
Deprecated.use {#Parser.parse(ParserEnvironment)
} insteadParserEnvironment.Builder
ParserEnvironment.Builder. parserOptions(ParserOptions parserOptions)
static void
ParserOptions. setDefaultOperationParserOptions(ParserOptions options)
By default, the Parser will not capture ignored characters or line comments.static void
ParserOptions. setDefaultParserOptions(ParserOptions options)
By default, the Parser will not capture ignored characters.static void
ParserOptions. 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 MultiSourceReader
Parser. setupMultiSourceReader(ParserEnvironment environment, ParserOptions parserOptions)
private static @NotNull SafeTokenReader
Parser. 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 TypeDefinitionRegistry
SchemaParser. parse(java.io.Reader reader, ParserOptions parserOptions)
Parse a reader of schema definitions and create aTypeDefinitionRegistry
private TypeDefinitionRegistry
SchemaParser. parseImpl(java.io.Reader schemaInput, ParserOptions parseOptions)
-