Uses of Class
org.apache.wicket.util.string.AppendingStringBuffer
Packages that use AppendingStringBuffer
Package
Description
Input/Output utilities.
String utilities.
-
Uses of AppendingStringBuffer in org.apache.wicket.util.io
Methods in org.apache.wicket.util.io that return AppendingStringBufferMethods in org.apache.wicket.util.io with parameters of type AppendingStringBufferModifier and TypeMethodDescriptionvoidStringBufferWriter.setStringBuffer(AppendingStringBuffer buffer) -
Uses of AppendingStringBuffer in org.apache.wicket.util.string
Methods in org.apache.wicket.util.string that return AppendingStringBufferModifier and TypeMethodDescriptionAppendingStringBuffer.append(boolean b) Appends the string representation of thebooleanargument to the string buffer.AppendingStringBuffer.append(char c) Appends the string representation of thecharargument to this string buffer.AppendingStringBuffer.append(char[] str) Appends the string representation of thechararray argument to this string buffer.AppendingStringBuffer.append(char[] str, int offset, int len) Appends the string representation of a subarray of thechararray argument to this string buffer.AppendingStringBuffer.append(double d) Appends the string representation of thedoubleargument to this string buffer.AppendingStringBuffer.append(float f) Appends the string representation of thefloatargument to this string buffer.AppendingStringBuffer.append(int i) Appends the string representation of theintargument to this string buffer.AppendingStringBuffer.append(long l) Appends the string representation of thelongargument to this string buffer.Appends the string representation of theObjectargument to this string buffer.Appends the string to this string buffer.AppendingStringBuffer.append(StringBuilder sb) Appends the specified AppendingStringBuffer to this AppendingStringBuffer.AppendingStringBuffer.append(AppendingStringBuffer sb) Appends the specified AppendingStringBuffer to this AppendingStringBuffer.AppendingStringBuffer.delete(int start, int end) Removes the characters in a substring of thisAppendingStringBuffer.AppendingStringBuffer.deleteCharAt(int index) Removes the character at the specified position in thisAppendingStringBuffer(shortening theAppendingStringBufferby one character).AppendingStringBuffer.insert(int offset, boolean b) Inserts the string representation of thebooleanargument into this string buffer.AppendingStringBuffer.insert(int offset, char c) Inserts the string representation of thecharargument into this string buffer.AppendingStringBuffer.insert(int offset, char[] str) Inserts the string representation of thechararray argument into this string buffer.AppendingStringBuffer.insert(int index, char[] str, int offset, int len) Inserts the string representation of a subarray of thestrarray argument into this string buffer.AppendingStringBuffer.insert(int offset, double d) Inserts the string representation of thedoubleargument into this string buffer.AppendingStringBuffer.insert(int offset, float f) Inserts the string representation of thefloatargument into this string buffer.AppendingStringBuffer.insert(int offset, int i) Inserts the string representation of the secondintargument into this string buffer.AppendingStringBuffer.insert(int offset, long l) Inserts the string representation of thelongargument into this string buffer.Inserts the string representation of theObjectargument into this string buffer.Inserts the string into this string buffer.AppendingStringBuffer.insert(int offset, StringBuffer str) Inserts the string into this string buffer.AppendingStringBuffer.insert(int offset, StringBuilder str) Inserts the string into this string buffer.Replaces the characters in a substring of thisAppendingStringBufferwith characters in the specifiedString.Methods in org.apache.wicket.util.string with parameters of type AppendingStringBufferModifier and TypeMethodDescriptionAppendingStringBuffer.append(AppendingStringBuffer sb) Appends the specified AppendingStringBuffer to this AppendingStringBuffer.static StringValueStringValue.valueOf(AppendingStringBuffer buffer) Converts the given input to an instance of StringValue.