Uses of Interface
org.opencypher.tools.io.Output
-
Packages that use Output Package Description org.opencypher.generator org.opencypher.railroad org.opencypher.tools.grammar This is the entry-point package for the tools in this library.org.opencypher.tools.io This package contains utilities for dealing with text output. -
-
Uses of Output in org.opencypher.generator
Methods in org.opencypher.generator that return Output Modifier and Type Method Description OutputProductionReplacement.Context. output()Methods in org.opencypher.generator with parameters of type Output Modifier and Type Method Description voidGenerator. generate(String start, Output output)voidGenerator. generate(Output output)voidNode. sExpression(Output output)voidNode. write(Output output)Constructors in org.opencypher.generator with parameters of type Output Constructor Description InteractiveChoices(LineInput input, Output output, Choices defaultChoices)TracingChoices(Output output, Choices choices) -
Uses of Output in org.opencypher.railroad
Method parameters in org.opencypher.railroad with type arguments of type Output Modifier and Type Method Description static Diagram.CanvasProvider<SVGShapes,XMLStreamException>SVGShapes. svgFile(Function<String,Output> output) -
Uses of Output in org.opencypher.tools.grammar
Fields in org.opencypher.tools.grammar declared as Output Modifier and Type Field Description protected OutputBnfWriter. outputprotected OutputBnfWriter. outputprotected OutputBnfWriter. outputMethods in org.opencypher.tools.grammar that return Output Modifier and Type Method Description static OutputISO14977. string(Output str, Production production)static OutputSQLBNF. string(Output str, Production production)Methods in org.opencypher.tools.grammar with parameters of type Output Modifier and Type Method Description static voidISO14977. append(Grammar.Term term, Output output)static voidISO14977. append(Production production, Output output)static voidSQLBNF. append(Grammar.Term term, Output output)voidRailRoadDiagramPages.BnfFlavour. bnf(Production production, Output output)static voidRailRoadDiagramPages. generate(Grammar grammar, Path workingDir, Output output, Map<String,?> properties)static ParserAntlr4. generateParser(Grammar grammar, String root, Output output)ParserParser.Generator. generateParser(Grammar grammar, String root, Output output)static OutputISO14977. string(Output str, Production production)static OutputSQLBNF. string(Output str, Production production)static voidAntlr4. write(Grammar grammar, Output output)static voidISO14977. write(Grammar grammar, Output output)static voidSQLBNF. write(Grammar grammar, Output output)static voidXml. write(Grammar grammar, Output output) -
Uses of Output in org.opencypher.tools.io
Subinterfaces of Output in org.opencypher.tools.io Modifier and Type Interface Description static interfaceOutput.ReadableAn extension ofOutputthat signals that what was written can be read back.Methods in org.opencypher.tools.io that return Output Modifier and Type Method Description default OutputOutput. and(Output output)Fluent API for multiplexing multipleOutputinstances.default OutputOutput. append(boolean x)Append a boolean value.OutputOutput. append(char x)default OutputOutput. append(char[] str)Append an array of characters.default OutputOutput. append(char[] str, int offset, int len)Append a range from an array of characters.default OutputOutput. append(double x)Append a double-precision floating-point number.default OutputOutput. append(float x)Append a floating-point number.default OutputOutput. append(int x)Append an integer.default OutputOutput. append(long x)Append a long integer.default OutputOutput. append(CharSequence str)default OutputOutput. append(CharSequence str, int start, int end)default OutputOutput. append(String str)Append a string.default <T> OutputOutput. append(T value, BiConsumer<T,Output> writer)Append an arbitrary object, formatted by a supplied method for writing the object.default OutputOutput. appendCodePoint(int codePoint)Appends the string representation of thecodePointargument to this sequence.default OutputOutput. escape(CharSequence str, int start, int end, IntFunction<String> replacement)Escape the code points of the given character sequence according to the given replacement function.default OutputOutput. escape(CharSequence str, IntFunction<String> replacement)Escape the code points of the given character sequence according to the given replacement function.default OutputOutput. format(String format, Object... args)Appends a formatted string to this output stream using the specified format string and arguments.default OutputOutput. format(Locale l, String format, Object... args)Appends a formatted string to this output stream using the specified format string and arguments.static OutputOutput. lineNumbers(Output output)Wrap anOutputin another instance that prepends a line number to every line written.static OutputOutput. multiplex(Output... output)Combine multipleOutputinstances to one instance that writes to all combined instances.static OutputOutput. output(OutputStream stream)Adapt anOutputStreamto the Output interface.static OutputOutput. output(Writer writer)Adapt aWriterto the Output interface.static OutputOutput. output(CharBuffer buffer)Adapt aCharBufferto the Output interface.static OutputOutput. output(Path path)Create anOutputthat writes to the specified file.default OutputOutput. printLines(String text, String separator)Append a specified string, with a given separator inserted between each line in the string.default OutputOutput. println()Append a line separator.default OutputOutput. println(boolean x)Append a boolean value and a line separator.default OutputOutput. println(char x)Append the specified character and a line separator.default OutputOutput. println(char[] str)Append an array of characters and a line separator.default OutputOutput. println(double x)Append a double-precision floating-point number and a line separator.default OutputOutput. println(float x)Append a floating-point number and a line separator.default OutputOutput. println(int x)Append an integer and a line separator.default OutputOutput. println(long x)Append a long integer and a line separator.default OutputOutput. println(String str)Append a string and a line separator.default OutputOutput. repeat(int cp, int times)static OutputOutput. stdErr()Get anOutputinstance that writes tothe standard error output stream.static OutputOutput. stdOut()Get anOutputinstance that writes tothe standard output stream.static OutputOutput. stringBuilder(int size)Create a newOutputthat writes to a new string builder of given capacity.OutputHtmlTag. textOutput()Unsafe access to the underlyingOutput.Methods in org.opencypher.tools.io with parameters of type Output Modifier and Type Method Description default OutputOutput. and(Output output)Fluent API for multiplexing multipleOutputinstances.static HtmlTag.HtmlHtmlTag. html(Output output)static OutputOutput. lineNumbers(Output output)Wrap anOutputin another instance that prepends a line number to every line written.static OutputOutput. multiplex(Output... output)Combine multipleOutputinstances to one instance that writes to all combined instances.Method parameters in org.opencypher.tools.io with type arguments of type Output Modifier and Type Method Description default <T> OutputOutput. append(T value, BiConsumer<T,Output> writer)Append an arbitrary object, formatted by a supplied method for writing the object.static <T> StringOutput. string(T value, BiConsumer<T,Output> writer)
-