Package io.reactivex.rxjava3.exceptions
Class CompositeException.WrappedPrintWriter
- java.lang.Object
-
- io.reactivex.rxjava3.exceptions.CompositeException.PrintStreamOrWriter
-
- io.reactivex.rxjava3.exceptions.CompositeException.WrappedPrintWriter
-
- Enclosing class:
- CompositeException
static final class CompositeException.WrappedPrintWriter extends CompositeException.PrintStreamOrWriter
Same abstraction and implementation as in JDK to allow PrintStream and PrintWriter to share implementation.
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.PrintWriter
printWriter
-
Constructor Summary
Constructors Constructor Description WrappedPrintWriter(java.io.PrintWriter printWriter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) CompositeException.WrappedPrintWriter
append(java.lang.Object o)
Prints the object's string representation via the underlying PrintStream or PrintWriter.
-
-
-
Method Detail
-
append
CompositeException.WrappedPrintWriter append(java.lang.Object o)
Description copied from class:CompositeException.PrintStreamOrWriter
Prints the object's string representation via the underlying PrintStream or PrintWriter.- Specified by:
append
in classCompositeException.PrintStreamOrWriter
- Parameters:
o
- the object to print- Returns:
- this
-
-