Uses of Class gnu.java.lang.CPStringBuilder

Uses in package gnu.java.util.regex

Methods with parameter type gnu.java.lang.CPStringBuilder

REMatch
RE.getMatch(Object input, int index, int eflags, CPStringBuilder buffer)
Returns the first match found in the input, beginning the search at the specified index, and using the specified execution flags.
boolean
Returns true if there are more matches in the input text.

Uses in package gnu.java.text

Constructors with parameter type gnu.java.lang.CPStringBuilder

This constructor accepts a StringBuffer.

Methods with return type gnu.java.lang.CPStringBuilder

CPStringBuilder
This method returns the internal CPStringBuilder describing the attributed string.

Uses in package gnu.java.lang

Methods with return type gnu.java.lang.CPStringBuilder

CPStringBuilder
CPStringBuilder.append(boolean bool)
Append the String value of the argument to this StringBuffer.
CPStringBuilder
Append the char to this StringBuffer.
CPStringBuilder
CPStringBuilder.append(char[] data)
Append the char array to this StringBuffer.
CPStringBuilder
CPStringBuilder.append(char[] data, int offset, int count)
Append part of the char array to this StringBuffer.
CPStringBuilder
CPStringBuilder.append(double dnum)
Append the String value of the argument to this StringBuffer.
CPStringBuilder
CPStringBuilder.append(float fnum)
Append the String value of the argument to this StringBuffer.
CPStringBuilder
Append the String value of the argument to this StringBuffer.
CPStringBuilder
Append the characters in the CharSequence to this buffer.
CPStringBuilder
CPStringBuilder.append(CharSequence seq, int start, int end)
Append some characters from the CharSequence to this buffer.
CPStringBuilder
Append the String value of the argument to this StringBuffer.
CPStringBuilder
Append the String to this StringBuffer.
CPStringBuilder
Append the StringBuilder value of the argument to this StringBuilder.
CPStringBuilder
Append the String value of the argument to this StringBuffer.
CPStringBuilder
Append the code point to this StringBuffer.
CPStringBuilder
CPStringBuilder.delete(int start, int end)
Delete characters from this StringBuffer.
CPStringBuilder
Delete a character from this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, boolean bool)
Insert the String value of the argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, char ch)
Insert the char argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, char[] data)
Insert the char[] argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, char[] str, int str_offset, int len)
Insert a subarray of the char[] argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, double dnum)
Insert the String value of the argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, float fnum)
Insert the String value of the argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, int inum)
Insert the String value of the argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, CharSequence sequence)
Insert the CharSequence argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, CharSequence sequence, int start, int end)
Insert a subsequence of the CharSequence argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, Object obj)
Insert the String value of the argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, String str)
Insert the String argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.insert(int offset, long lnum)
Insert the String value of the argument into this StringBuffer.
CPStringBuilder
CPStringBuilder.replace(int start, int end, String str)
Replace characters between index start (inclusive) and end (exclusive) with str.
CPStringBuilder
Reverse the characters in this StringBuffer.