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

Interface VUOutputStream

  • public interface VUOutputStream
    Basic output stream operations that either throw an unchecked exception (IORuntimeException) or throw no exceptions. Intentionally does not support the close method to avoid inadvertent incorrect use with transactional output streams.
    • Methods 
      Modifier and Type Method and Description
      Ordinary member indicator flush Reveal DetailHide Detail
      abstract void flush()
       
      void flush() throws IORuntimeException
      Ordinary member indicator write Reveal DetailHide Detail
      void write(byte[] b)
       
      void write(byte[] b) throws IORuntimeException
      Ordinary member indicator write Reveal DetailHide Detail
      abstract void write(byte[] b, int off, int len)
       
      void write(byte[] b, int off, int len) throws IORuntimeException
      Ordinary member indicator write Reveal DetailHide Detail
      abstract void write(int b)
       
      void write(int b) throws IORuntimeException