Uses of Class
org.qbicc.machine.tool.process.InputSource
Packages that use InputSource
-
Uses of InputSource in org.qbicc.machine.tool
Methods in org.qbicc.machine.tool that return InputSourceModifier and TypeMethodDescriptionCCompilerInvoker.getSource()Get the input source for the C program.Methods in org.qbicc.machine.tool with parameters of type InputSourceModifier and TypeMethodDescriptionvoidCCompilerInvoker.setSource(InputSource source) Set the input source for the C program. -
Uses of InputSource in org.qbicc.machine.tool.process
Methods in org.qbicc.machine.tool.process that return InputSourceModifier and TypeMethodDescriptionstatic InputSourceInputSource.empty()An input source which is empty.static <T> InputSourceInputSource.from(io.smallrye.common.function.ExceptionBiConsumer<T, OutputStream, IOException> consumer, T param) An input source which provides input from the output of the given consumer.static <T> InputSourceInputSource.from(io.smallrye.common.function.ExceptionBiConsumer<T, Writer, IOException> consumer, T param, Charset charset) An input source which provides input from the output of the given consumer, using the given character set for byte-encoded destinations.static InputSourceInputSource.from(io.smallrye.common.function.ExceptionConsumer<OutputStream, IOException> consumer) An input source which provides input from the output of the given consumer.static InputSourceInputSource.from(io.smallrye.common.function.ExceptionConsumer<Writer, IOException> consumer, Charset charset) An input source which provides input from the output of the given consumer, using the given character set for byte-encoded destinations.static <T> InputSourceInputSource.from(io.smallrye.common.function.ExceptionFunction<T, InputStream, IOException> supplier, T param) An input source which provides input from the given supplier.static <T> InputSourceInputSource.from(io.smallrye.common.function.ExceptionFunction<T, Reader, IOException> supplier, T param, Charset charset) An input source which provides input from aReaderprovided by the given supplier, using the given character set for byte-encoded destinations.static InputSourceInputSource.from(io.smallrye.common.function.ExceptionSupplier<InputStream, IOException> supplier) An input source which provides input from the given supplier.static InputSourceInputSource.from(io.smallrye.common.function.ExceptionSupplier<Reader, IOException> supplier, Charset charset) An input source which provides input from aReaderprovided by the given supplier, using the given character set for byte-encoded destinations.static InputSourceAn input source which provides input from the given file path.static InputSourceInputSource.from(CharSequence string) An input source which provides input from the given string, using UTF-8 for byte-encoded destinations.static InputSourceInputSource.from(CharSequence string, Charset charset) An input source which provides input from the given string, using the given character set for byte-encoded destinations.static InputSourceAn input source which provides input from the given file path.