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 TypeMethodDescriptionvoid
StringBufferWriter.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 theboolean
argument to the string buffer.AppendingStringBuffer.append
(char c) Appends the string representation of thechar
argument to this string buffer.AppendingStringBuffer.append
(char[] str) Appends the string representation of thechar
array argument to this string buffer.AppendingStringBuffer.append
(char[] str, int offset, int len) Appends the string representation of a subarray of thechar
array argument to this string buffer.AppendingStringBuffer.append
(double d) Appends the string representation of thedouble
argument to this string buffer.AppendingStringBuffer.append
(float f) Appends the string representation of thefloat
argument to this string buffer.AppendingStringBuffer.append
(int i) Appends the string representation of theint
argument to this string buffer.AppendingStringBuffer.append
(long l) Appends the string representation of thelong
argument to this string buffer.Appends the string representation of theObject
argument 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 theAppendingStringBuffer
by one character).AppendingStringBuffer.insert
(int offset, boolean b) Inserts the string representation of theboolean
argument into this string buffer.AppendingStringBuffer.insert
(int offset, char c) Inserts the string representation of thechar
argument into this string buffer.AppendingStringBuffer.insert
(int offset, char[] str) Inserts the string representation of thechar
array argument into this string buffer.AppendingStringBuffer.insert
(int index, char[] str, int offset, int len) Inserts the string representation of a subarray of thestr
array argument into this string buffer.AppendingStringBuffer.insert
(int offset, double d) Inserts the string representation of thedouble
argument into this string buffer.AppendingStringBuffer.insert
(int offset, float f) Inserts the string representation of thefloat
argument into this string buffer.AppendingStringBuffer.insert
(int offset, int i) Inserts the string representation of the secondint
argument into this string buffer.AppendingStringBuffer.insert
(int offset, long l) Inserts the string representation of thelong
argument into this string buffer.Inserts the string representation of theObject
argument 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 thisAppendingStringBuffer
with 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 StringValue
StringValue.valueOf
(AppendingStringBuffer buffer) Converts the given input to an instance of StringValue.