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)
          Appends the string representation of a boolean value to the end of the buffer.
 CharBuffer CharBuffer.append(char c)
          Appends a character to the end of the buffer.
 CharBuffer CharBuffer.append(char[] str)
          Appends a character array to the end of the buffer.
 CharBuffer CharBuffer.append(char[] str, int offset, int length)
          Appends a character array to the end of the buffer.
 CharBuffer CharBuffer.append(double d)
          Appends the string representation of a double value to the end of the buffer.
 CharBuffer CharBuffer.append(float f)
          Appends the string representation of a float value to the end of the buffer.
 CharBuffer CharBuffer.append(int i)
          Appends the string representation of an int value to the end of the buffer.
 CharBuffer CharBuffer.append(long l)
          Appends the string representation of a long value to the end of the buffer.
 CharBuffer CharBuffer.append(java.lang.Object obj)
          Appends the string representation of an object to the end of the buffer.
 CharBuffer CharBuffer.append(java.lang.String str)
          Appends a string to the end of the buffer.
 CharBuffer CharBuffer.append(java.lang.StringBuffer str)
          Appends a string buffer to the end of the buffer.
 CharBuffer CharBuffer.delete(int start, int end)
          Removes characters from this buffer.
 

Methods in net.percederberg.grammatica.parser.re with parameters of type CharBuffer
 Matcher RegExp.matcher(CharBuffer str)
          Creates a new matcher for the specified string.
 

Constructors in net.percederberg.grammatica.parser.re with parameters of type CharBuffer
Matcher(net.percederberg.grammatica.parser.re.Element e, CharBuffer str)
          Creates a new matcher with the specified element.