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 ParserOptions
ParserOptions.defaultJvmOperationParserOptions
private static ParserOptions
ParserOptions.defaultJvmParserOptions
private static ParserOptions
ParserOptions.defaultJvmSdlParserOptions
private final ParserOptions
GraphqlAntlrToLanguage.parserOptions
(package private) ParserOptions
ParserEnvironment.Builder.parserOptions
Methods in graphql.parser that return ParserOptionsModifier and TypeMethodDescriptionParserOptions.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.GraphqlAntlrToLanguage.getParserOptions()
ParserEnvironment.getParserOptions()
ParserOptions.transform
(Consumer<ParserOptions.Builder> builderConsumer) Methods in graphql.parser with parameters of type ParserOptionsModifier and TypeMethodDescriptionprivate @NotNull SafeTokenSource
Parser.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 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 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 aTypeDefinitionRegistry
private TypeDefinitionRegistry
SchemaParser.parseImpl
(Reader schemaInput, ParserOptions parseOptions)
Parser.parse(ParserEnvironment)
} instead