Uses of Interface
com.aoapps.lang.io.NoClose
-
Packages that use NoClose Package Description com.aoapps.lang.io -
-
Uses of NoClose in com.aoapps.lang.io
Classes in com.aoapps.lang.io that implement NoClose Modifier and Type Class Description classAppendableWriterWriter that writes to an underlyingAppendable.classEncoderWriterWriter that encodes during write.classFailOnWriteWriterclassNoCloseInputStreamOverridesNoCloseInputStream.close()to a no-op.classNoCloseOutputStreamOverridesNoCloseOutputStream.close()to a no-op.classNoCloseReaderOverridesNoCloseReader.close()to a no-op.classNoCloseWriterOverridesNoCloseWriter.close()to a no-op.classNullOutputStreamDiscards all data.classNullPrintWriterDiscards all data.classNullWriterDiscards all data.classWriterFacadeWraps a writer while passing-through all methods of the writer class.classWriterOutputStreamA writer output stream makes aWriterbehave like anOutputStream.Methods in com.aoapps.lang.io with type parameters of type NoClose Modifier and Type Method Description static <I extends InputStream & NoClose>
INoCloseInputStream. wrap(InputStream in)Returnsinwhen it is already aNoCloseandisNoClose(), otherwise returns a newNoCloseInputStreamwrappingin.static <O extends OutputStream & NoClose>
ONoCloseOutputStream. wrap(OutputStream out)Returnsoutwhen it is already aNoCloseandisNoClose(), otherwise returns a newNoCloseOutputStreamwrappingout.static <R extends Reader & NoClose>
RNoCloseReader. wrap(Reader in)Returnsinwhen it is already aNoCloseandisNoClose(), otherwise returns a newNoCloseReaderwrappingin.static <W extends Writer & NoClose>
WNoCloseWriter. wrap(Writer out)Returnsoutwhen it is already aNoCloseandisNoClose(), otherwise returns a newNoCloseWriterwrappingout.
-