Package jodd.util.buffer

Examples of jodd.util.buffer.FastCharBuffer


  /**
   * Serializes object into source.
   */
  public String serialize(Object source) {
    FastCharBuffer fastCharBuffer = new FastCharBuffer();

    serialize(source, fastCharBuffer);

    return UnsafeUtil.createString(fastCharBuffer.toArray());
  }
View Full Code Here


   *
   * @param size the initial size.
   * @throws IllegalArgumentException if size is negative.
   */
  public FastCharArrayWriter(int size) {
    buffer = new FastCharBuffer(size);
  }
View Full Code Here

TOP

Related Classes of jodd.util.buffer.FastCharBuffer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.