Overview
Package
Class
Use
Tree
Deprecated
Index
All Classes
Help
Prev Class
Next Class
VUtils – Release 1
Interface org.violetlib.io.VWriter
Inherited members: ShowHide
Deprecated: ShowHide
org.violetlib.io

Interface VWriter

  • All Known Subinterfaces:
    TransactionalWriter
    public interface VWriter
    Basic writer operations that throw IOException. Intentionally does not support the close method to avoid inadvertent incorrect use with transactional writers.

    This interface interprets newline characters as line separators. Implementations that write to files or other system devices should map newlines to the appropriate line separator.

    • Methods 
      Modifier and Type Method and Description
      Ordinary member indicator flush Reveal DetailHide Detail
      abstract void flush()
       
      void flush() throws IOException
      Ordinary member indicator newLine Reveal DetailHide Detail
      abstract void newLine()
       
      void newLine() throws IOException
      Ordinary member indicator write Reveal DetailHide Detail
      abstract void write(char ch)
       
      void write(char ch) throws IOException
      Ordinary member indicator write Reveal DetailHide Detail
      abstract void write(String s)
       
      void write(String s) throws IOException
      Ordinary member indicator writeln Reveal DetailHide Detail
      void writeln()
       
      void writeln() throws IOException
      Ordinary member indicator writeln Reveal DetailHide Detail
      void writeln(String s)
       
      void writeln(String s) throws IOException