Uses of Class
org.clapper.util.text.XStringBufBase

Packages that use XStringBufBase
org.clapper.util.text org.clapper.util.text - Text and String Classes. 
 

Uses of XStringBufBase in org.clapper.util.text
 

Subclasses of XStringBufBase in org.clapper.util.text
 class XStringBuffer
          An XStringBuffer objects wraps a standard Java StringBuffer object, providing a superset of StringBuffer's functionality.
 class XStringBuilder
          An XStringBuilder objects wraps a standard Java StringBuilder object, providing a superset of StringBuilder's functionality.
 

Methods in org.clapper.util.text that return XStringBufBase
 XStringBufBase XStringBufBase.append(boolean val)
          Append the string representation of a boolean value to the buffer.
 XStringBufBase XStringBufBase.append(char c)
          Append the specified character to the buffer.
 XStringBufBase XStringBufBase.append(char[] chars)
          Append the specified array of characters to the buffer.
 XStringBufBase XStringBufBase.append(char[] chars, int offset, int len)
          Append the specified characters in a character array to the buffer.
 XStringBufBase XStringBufBase.append(java.lang.CharSequence csq)
          Append the entire contents of the specified CharSequence to the buffer.
 XStringBufBase XStringBufBase.append(java.lang.CharSequence csq, int start, int end)
          Append a subsequence of the specified CharSequence to the buffer.
 XStringBufBase XStringBufBase.append(double val)
          Append the string representation of a double value to the buffer.
 XStringBufBase XStringBufBase.append(float val)
          Append the string representation of a float value to the buffer.
 XStringBufBase XStringBufBase.append(int val)
          Append the string representation of a int value to the buffer.
 XStringBufBase XStringBufBase.append(long val)
          Append the string representation of a long value to the buffer.
 XStringBufBase XStringBufBase.append(java.lang.Object obj)
          Append the string representation of an object to the buffer.
 XStringBufBase XStringBufBase.append(short val)
          Append the string representation of a short value to the buffer.
 XStringBufBase XStringBufBase.append(java.lang.String s)
          Append the specified string to the buffer.
 XStringBufBase XStringBufBase.delete(int start, int end)
          Remove the characters in a substring of this XStringBuffer.
 XStringBufBase XStringBufBase.insert(int index, boolean val)
          Insert the string representation of a booleanvalue into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, char ch)
          Insert a single character at a specified position in the buffer.
 XStringBufBase XStringBufBase.insert(int index, char[] chars)
          Insert the contents of a character array into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, char[] chars, int offset, int len)
          Insert characters from a character array into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, double val)
          Insert the string representation of a doublevalue into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, float val)
          Insert the string representation of a floatvalue into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, int val)
          Insert the string representation of a intvalue into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, long val)
          Insert the string representation of a longvalue into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, java.lang.Object obj)
          Insert the string representation of an arbitrary object into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, short val)
          Insert the string representation of a shortvalue into the buffer at a specified position.
 XStringBufBase XStringBufBase.insert(int index, java.lang.String s)
          Insert the contents of a string into the buffer at a specified position.
 XStringBufBase XStringBufBase.replace(int start, int end, java.lang.String str)
          Replace the characters in a substring of this buffer with characters in the specified String.
 



Copyright © 2004-2007 Brian M. Clapper. All Rights Reserved.