Package com.webmethods.rtl.encode
Class Encoder.FixedCharArrayWriter
java.lang.Object
java.io.Writer
java.io.CharArrayWriter
com.webmethods.rtl.encode.Encoder.FixedCharArrayWriter
- All Implemented Interfaces:
Closeable
,Flushable
,Appendable
,AutoCloseable
- Enclosing class:
- Encoder
CharArrayWriter that allows one to specify the char array buffer
in which to write. If the the number of chars written to this writer
exceeds the size of the specified buf, the extra chars simply
will not be stored.
-
Field Summary
Fields inherited from class java.io.CharArrayWriter
buf, count
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.io.CharArrayWriter
append, append, append, close, flush, reset, size, toCharArray, toString, write, write, write, writeTo
Methods inherited from class java.io.Writer
nullWriter, write, write
-
Constructor Details
-
FixedCharArrayWriter
public FixedCharArrayWriter(char[] buf, int offset)
-