This web site requires JavaScript for proper operation. JavaScript is disabled on your browser.
Overview
Package
Class
Use
Tree
Deprecated
Index
All Classes
Help
Prev Class
Next Class
packages...
org.violetlib.io
org.violetlib.test
org.violetlib.util
classes...
VUtils – Release 1
Interface
org.violetlib.io
.VULineWriter
Inherited members:
Show
Hide
Deprecated:
Show
Hide
classes...
enum constants...
fields...
static methods...
constructors...
methods...
properties...
org.violetlib.io
Interface VULineWriter
public interface
VULineWriter
A writer that writes individual lines and throws an unchecked exception in case of error. Intentionally does not support the close method to avoid inadvertent incorrect use of try with resources.
Methods
Modifier and Type
Method and Description
flush
abstract void
flush
()
void
flush
() throws IOException
writeln
void
writeln
()
void
writeln
() throws IORuntimeException
writeln
abstract void
writeln
(String s)
Write the specified text as a single line.
void
writeln
(String s) throws IORuntimeException
Write the specified text as a single line.
Parameters:
s
- The text, which should not include newlines.
Throws:
IORuntimeException