Searched defs:CharBuffer (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/
H A DCharBuffer.java29 public class CharBuffer { class
41 * Creates a new CharBuffer with an initial capacity of 32 characters.
43 public CharBuffer() { method in class:CharBuffer
48 * Creates a new CharBuffer with an initial capacity
51 public CharBuffer(final int length) { method in class:CharBuffer
53 throw new IllegalArgumentException("Can't create an empty CharBuffer");
84 * Appends the contents of <code>cb</code> to the end of this CharBuffer.
85 * @param cb the CharBuffer to append or null
87 public void append(final CharBuffer cb) {
97 * Appends <code>s</code> to the end of this CharBuffer
[all...]

Completed in 18 milliseconds