Uses of Class
net.percederberg.grammatica.parser.re.CharBuffer

Packages that use CharBuffer
net.percederberg.grammatica.parser.re   
 

Uses of CharBuffer in net.percederberg.grammatica.parser.re
 

Methods in net.percederberg.grammatica.parser.re that return CharBuffer
 CharBuffer CharBuffer.append(boolean b)
          Deprecated. Appends the string representation of a boolean value to the end of the buffer.
 CharBuffer CharBuffer.append(char c)
          Deprecated. Appends a character to the end of the buffer.
 CharBuffer CharBuffer.append(char[] str)
          Deprecated. Appends a character array to the end of the buffer.
 CharBuffer CharBuffer.append(char[] str, int offset, int length)
          Deprecated. Appends a character array to the end of the buffer.
 CharBuffer CharBuffer.append(double d)
          Deprecated. Appends the string representation of a double value to the end of the buffer.
 CharBuffer CharBuffer.append(float f)
          Deprecated. Appends the string representation of a float value to the end of the buffer.
 CharBuffer CharBuffer.append(int i)
          Deprecated. Appends the string representation of an int value to the end of the buffer.
 CharBuffer CharBuffer.append(long l)
          Deprecated. Appends the string representation of a long value to the end of the buffer.
 CharBuffer CharBuffer.append(java.lang.Object obj)
          Deprecated. Appends the string representation of an object to the end of the buffer.
 CharBuffer CharBuffer.append(java.lang.String str)
          Deprecated. Appends a string to the end of the buffer.
 CharBuffer CharBuffer.append(java.lang.StringBuffer str)
          Deprecated. Appends a string buffer to the end of the buffer.
 CharBuffer CharBuffer.delete(int start, int end)
          Deprecated. Removes characters from this buffer.
 

Methods in net.percederberg.grammatica.parser.re with parameters of type CharBuffer
 Matcher RegExp.matcher(CharBuffer str)
          Deprecated. The CharBuffer class has been deprecated in favor of ReaderBuffer as of version 1.5. Create a ReaderBuffer and use the matcher(ReaderBuffer) method instead of this one.