char
177178179180181182183184185186187
/** * Serializes object into source. */ public String serialize(Object source) { FastCharBuffer fastCharBuffer = new FastCharBuffer(); serialize(source, fastCharBuffer); return UnsafeUtil.createString(fastCharBuffer.toArray()); }
28293031323334
* * @param size the initial size. * @throws IllegalArgumentException if size is negative. */ public FastCharArrayWriter(int size) { buffer = new FastCharBuffer(size); }