Uses of Class
io.jawk.jrt.AwkSink
Packages that use AwkSink
-
Uses of AwkSink in io.jawk
-
Uses of AwkSink in io.jawk.backend
Methods in io.jawk.backend that return AwkSinkModifier and TypeMethodDescriptionAVM.getAwkSink()Returns the default sink used by this runtime.Methods in io.jawk.backend with parameters of type AwkSinkModifier and TypeMethodDescriptionvoidAVM.setAwkSink(AwkSink sink) Sets the sink used by defaultprintandprintfoperations on this runtime. -
Uses of AwkSink in io.jawk.jrt
Subclasses of AwkSink in io.jawk.jrtModifier and TypeClassDescriptionfinal classTextAwkSinkbacked by anAppendable.final classTextAwkSinkbacked by aPrintStream.Fields in io.jawk.jrt declared as AwkSinkModifier and TypeFieldDescriptionstatic final AwkSinkAwkSink.NOP_SINKA shared no-op sink that silently discards all output.Methods in io.jawk.jrt that return AwkSinkModifier and TypeMethodDescriptionstatic AwkSinkAwkSink.from(OutputStream outputStream) Creates a sink backed by anOutputStream.static AwkSinkAwkSink.from(OutputStream outputStream, Locale locale) Creates a sink backed by anOutputStream.static AwkSinkAwkSink.from(PrintStream printStream) Creates a sink backed by aPrintStream.static AwkSinkAwkSink.from(PrintStream printStream, Locale locale) Creates a sink backed by aPrintStream.static AwkSinkAwkSink.from(Appendable appendable) Creates a sink backed by anAppendable.static AwkSinkAwkSink.from(Appendable appendable, Locale locale) Creates a sink backed by anAppendable.JRT.getAwkSink()Returns the default output sink used byprintandprintf.Methods in io.jawk.jrt with parameters of type AwkSinkModifier and TypeMethodDescriptionvoidJRT.setAwkSink(AwkSink sink) Sets the sink used by defaultprintandprintfoperations.Constructors in io.jawk.jrt with parameters of type AwkSinkModifierConstructorDescriptionJRT(VariableManager vm, Locale locale, AwkSink awkSink, PrintStream error) Create a JRT with explicit default output and error streams.SandboxedJRT(VariableManager vm, Locale locale, AwkSink awkSink, PrintStream error) Creates a sandboxed runtime facade with explicit default output settings.