Overview
Package
Class
Use
Tree
Deprecated
Index
All Classes
Help
Prev Class
Next Class
VUtils – Release 1
Interface org.violetlib.io.VULineWriter
Inherited members: ShowHide
Deprecated: ShowHide
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
      Ordinary member indicator flush Reveal DetailHide Detail
      abstract void flush()
       
      void flush() throws IOException
      Ordinary member indicator writeln Reveal DetailHide Detail
      void writeln()
       
      void writeln() throws IORuntimeException
      Ordinary member indicator writeln Reveal DetailHide Detail
      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