| Package | Description |
|---|---|
| org.apache.wicket.util.io |
Input/Output utilities.
|
| org.apache.wicket.util.string |
String utilities.
|
| Modifier and Type | Method and Description |
|---|---|
AppendingStringBuffer |
StringBufferWriter.getStringBuffer() |
| Modifier and Type | Method and Description |
|---|---|
void |
StringBufferWriter.setStringBuffer(AppendingStringBuffer buffer) |
| Modifier and Type | Method and Description |
|---|---|
AppendingStringBuffer |
AppendingStringBuffer.append(AppendingStringBuffer sb)
Appends the specified AppendingStringBuffer to this AppendingStringBuffer.
|
AppendingStringBuffer |
AppendingStringBuffer.append(boolean b)
Appends the string representation of the
boolean argument to the string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(char c)
Appends the string representation of the
char argument to this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(char[] str)
Appends the string representation of the
char array argument to this string
buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(char[] str,
int offset,
int len)
Appends the string representation of a subarray of the
char array argument to
this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(double d)
Appends the string representation of the
double argument to this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(float f)
Appends the string representation of the
float argument to this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(int i)
Appends the string representation of the
int argument to this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(long l)
Appends the string representation of the
long argument to this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(Object obj)
Appends the string representation of the
Object argument to this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.append(String str)
Appends the string to this string buffer.
|
AppendingStringBuffer |
AppendingStringBuffer.append(StringBuilder sb)
Appends the specified AppendingStringBuffer to this AppendingStringBuffer.
|
AppendingStringBuffer |
AppendingStringBuffer.delete(int start,
int end)
Removes the characters in a substring of this
AppendingStringBuffer. |
AppendingStringBuffer |
AppendingStringBuffer.deleteCharAt(int index)
Removes the character at the specified position in this
AppendingStringBuffer
(shortening the AppendingStringBuffer by one character). |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
boolean b)
Inserts the string representation of the
boolean argument into this string
buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
char c)
Inserts the string representation of the
char argument into this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
char[] str)
Inserts the string representation of the
char array argument into this string
buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int index,
char[] str,
int offset,
int len)
Inserts the string representation of a subarray of the
str array argument into
this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
double d)
Inserts the string representation of the
double argument into this string
buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
float f)
Inserts the string representation of the
float argument into this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
int i)
Inserts the string representation of the second
int argument into this string
buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
long l)
Inserts the string representation of the
long argument into this string buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
Object obj)
Inserts the string representation of the
Object argument into this string
buffer. |
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
String str)
Inserts the string into this string buffer.
|
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
StringBuffer str)
Inserts the string into this string buffer.
|
AppendingStringBuffer |
AppendingStringBuffer.insert(int offset,
StringBuilder str)
Inserts the string into this string buffer.
|
AppendingStringBuffer |
AppendingStringBuffer.replace(int start,
int end,
String str)
Replaces the characters in a substring of this
AppendingStringBuffer with
characters in the specified String. |
| Modifier and Type | Method and Description |
|---|---|
AppendingStringBuffer |
AppendingStringBuffer.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.
|
Copyright © 2006–2021 Apache Software Foundation. All rights reserved.