Java org.apache.wicket.util.string AppendingStringBuffer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket.util.string AppendingStringBuffer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.wicket.util.string AppendingStringBuffer.

The text is from its open source code.

Constructor

AppendingStringBuffer()
Constructs a string buffer with no characters in it and an initial capacity of 16 characters.
AppendingStringBuffer(final int length)
Constructs a string buffer with no characters in it and an initial capacity specified by the length argument.
AppendingStringBuffer(final CharSequence str)
Constructs a string buffer so that it represents the same sequence of characters as the string argument; in other words, the initial contents of the string buffer is a copy of the argument string.

Method

AppendingStringBufferappend(final Object obj)
Appends the string representation of the Object argument to this string buffer.
AppendingStringBufferappend(String str)
Appends the string to this string buffer.
AppendingStringBufferappend(AppendingStringBuffer sb)
Appends the specified AppendingStringBuffer to this AppendingStringBuffer.
AppendingStringBufferappend(StringBuilder sb)
Appends the specified AppendingStringBuffer to this AppendingStringBuffer.
AppendingStringBufferappend(final char str[])
Appends the string representation of the char array argument to this string buffer.
AppendingStringBufferappend(final boolean b)
Appends the string representation of the boolean argument to the string buffer.
AppendingStringBufferappend(final char c)
Appends the string representation of the char argument to this string buffer.
AppendingStringBufferappend(final int i)
Appends the string representation of the int argument to this string buffer.
AppendingStringBufferappend(final long l)
Appends the string representation of the long argument to this string buffer.
AppendingStringBufferappend(final float f)
Appends the string representation of the float argument to this string buffer.
AppendingStringBufferappend(final double d)
Appends the string representation of the double argument to this string buffer.
charcharAt(final int index)
The specified character of the sequence currently represented by the string buffer, as indicated by the index argument, is returned.
AppendingStringBufferdelete(final int start, int end)
Removes the characters in a substring of this AppendingStringBuffer.
AppendingStringBufferdeleteCharAt(final int index)
Removes the character at the specified position in this AppendingStringBuffer (shortening the AppendingStringBuffer by one character).
booleanendsWith(final CharSequence suffix)
Tests if this AppendingStringBuffer ends with the specified suffix.
intindexOf(final String str)
Returns the index within this string of the first occurrence of the specified substring.
AppendingStringBufferinsert(final int offset, final Object obj)
Inserts the string representation of the Object argument into this string buffer.
AppendingStringBufferinsert(final int offset, String str)
Inserts the string into this string buffer.
AppendingStringBufferinsert(final int offset, StringBuilder str)
Inserts the string into this string buffer.
AppendingStringBufferinsert(final int offset, StringBuffer str)
Inserts the string into this string buffer.
AppendingStringBufferinsert(final int offset, final char str[])
Inserts the string representation of the char array argument into this string buffer.
AppendingStringBufferinsert(final int offset, final boolean b)
Inserts the string representation of the boolean argument into this string buffer.
AppendingStringBufferinsert(final int offset, final char c)
Inserts the string representation of the char argument into this string buffer.
AppendingStringBufferinsert(final int offset, final int i)
Inserts the string representation of the second int argument into this string buffer.
AppendingStringBufferinsert(final int offset, final long l)
Inserts the string representation of the long argument into this string buffer.
AppendingStringBufferinsert(final int offset, final float f)
Inserts the string representation of the float argument into this string buffer.
AppendingStringBufferinsert(final int offset, final double d)
Inserts the string representation of the double argument into this string buffer.
intlastIndexOf(final String str)
Returns the index within this string of the rightmost occurrence of the specified substring.
intlength()
Returns the length (character count) of this string buffer.
CharSequencesubSequence(final int start, final int end)
Returns a new character sequence that is a subsequence of this sequence.
StringtoString()
Converts to a string representing the data in this AppendingStringBuffer.