| Package | Description |
|---|---|
| java.io |
Provides for system input and output through data streams, serialization and the file system.
|
| java.lang |
Provides classes that are fundamental to the design of the Java programming language.
|
| java.text |
Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages.
|
| java.util.regex |
Classes for matching character sequences against patterns specified by regular expressions.
|
| javax.swing.text.html.parser |
Provides the default HTML parser, along with support classes.
|
| Modifier and Type | Method and Description |
|---|---|
StringBuffer |
StringWriter.getBuffer()
Return the string buffer itself.
|
| Modifier and Type | Method and Description |
|---|---|
StringBuffer |
StringBuffer.append(boolean b)
|
StringBuffer |
StringBuffer.append(char c)
|
StringBuffer |
StringBuffer.append(char[] str)
|
StringBuffer |
StringBuffer.append(char[] str, int offset, int len)
|
StringBuffer |
StringBuffer.append(CharSequence
Appends the specified
CharSequence to this sequence.
|
StringBuffer |
StringBuffer.append(CharSequence
|
StringBuffer |
StringBuffer.append(double d)
|
StringBuffer |
StringBuffer.append(float f)
|
StringBuffer |
StringBuffer.append(int i)
|
StringBuffer |
StringBuffer.append(long lng)
|
StringBuffer |
StringBuffer.append(Object
|
StringBuffer |
StringBuffer.append(String
|
StringBuffer |
StringBuffer.append(StringBuffer
Appends the specified
StringBuffer to this sequence.
|
StringBuffer |
StringBuffer.appendCodePoint(int codePoint)
|
StringBuffer |
StringBuffer.delete(int start, int end)
|
StringBuffer |
StringBuffer.deleteCharAt(int index)
|
StringBuffer |
StringBuffer.insert(int offset, boolean b)
|
StringBuffer |
StringBuffer.insert(int offset, char c)
|
StringBuffer |
StringBuffer.insert(int offset, char[] str)
|
StringBuffer |
StringBuffer.insert(int index, char[] str, int offset, int len)
|
StringBuffer |
StringBuffer.insert(int dstOffset, CharSequence
|
StringBuffer |
StringBuffer.insert(int dstOffset, CharSequence
|
StringBuffer |
StringBuffer.insert(int offset, double d)
|
StringBuffer |
StringBuffer.insert(int offset, float f)
|
StringBuffer |
StringBuffer.insert(int offset, int i)
|
StringBuffer |
StringBuffer.insert(int offset, long l)
|
StringBuffer |
StringBuffer.insert(int offset, Object
|
StringBuffer |
StringBuffer.insert(int offset, String
|
StringBuffer |
StringBuffer.replace(int start, int end, String
|
StringBuffer |
StringBuffer.reverse()
|
| Modifier and Type | Method and Description |
|---|---|
StringBuffer |
StringBuffer.append(StringBuffer
Appends the specified
StringBuffer to this sequence.
|
StringBuilder |
StringBuilder.append(StringBuffer
Appends the specified
StringBuffer to this sequence.
|
boolean |
String.contentEquals(StringBuffer
Compares this string to the specified
StringBuffer.
|
| Constructor and Description | |
|---|---|
String(StringBuffer
Allocates a new string that contains the sequence of characters currently contained in the string buffer argument.
|
| Modifier and Type | Method and Description |
|---|---|
abstract StringBuffer |
DateFormat.format(Date
Formats a Date into a date/time string.
|
StringBuffer |
SimpleDateFormat.format(Date
Formats the given
Date into a date/time string and appends the result to the given
StringBuffer.
|
StringBuffer |
ChoiceFormat.format(double number, StringBuffer
Returns pattern with formatted double.
|
abstract StringBuffer |
NumberFormat.format(double number, StringBuffer
Specialization of format.
|
StringBuffer |
DecimalFormat.format(double number, StringBuffer
Formats a double to produce a string.
|
StringBuffer |
ChoiceFormat.format(long number, StringBuffer
Specialization of format.
|
abstract StringBuffer |
NumberFormat.format(long number, StringBuffer
Specialization of format.
|
StringBuffer |
DecimalFormat.format(long number, StringBuffer
Format a long to produce a string.
|
StringBuffer |
MessageFormat.format(Object
Formats an array of objects and appends the
MessageFormat's pattern, with format elements replaced by the formatted objects, to the provided
StringBuffer.
|
StringBuffer |
MessageFormat.format(Object
Formats an array of objects and appends the
MessageFormat's pattern, with format elements replaced by the formatted objects, to the provided
StringBuffer.
|
StringBuffer |
NumberFormat.format(Object
Formats a number and appends the resulting text to the given string buffer.
|
StringBuffer |
DecimalFormat.format(Object
Formats a number and appends the resulting text to the given string buffer.
|
abstract StringBuffer |
Format.format(Object
Formats an object and appends the resulting text to a given string buffer.
|
StringBuffer |
DateFormat.format(Object
Overrides Format.
|
| Modifier and Type | Method and Description |
|---|---|
abstract StringBuffer |
DateFormat.format(Date
Formats a Date into a date/time string.
|
StringBuffer |
SimpleDateFormat.format(Date
Formats the given
Date into a date/time string and appends the result to the given
StringBuffer.
|
StringBuffer |
ChoiceFormat.format(double number, StringBuffer
Returns pattern with formatted double.
|
abstract StringBuffer |
NumberFormat.format(double number, StringBuffer
Specialization of format.
|
StringBuffer |
DecimalFormat.format(double number, StringBuffer
Formats a double to produce a string.
|
StringBuffer |
ChoiceFormat.format(long number, StringBuffer
Specialization of format.
|
abstract StringBuffer |
NumberFormat.format(long number, StringBuffer
Specialization of format.
|
StringBuffer |
DecimalFormat.format(long number, StringBuffer
Format a long to produce a string.
|
StringBuffer |
MessageFormat.format(Object
Formats an array of objects and appends the
MessageFormat's pattern, with format elements replaced by the formatted objects, to the provided
StringBuffer.
|
StringBuffer |
MessageFormat.format(Object
Formats an array of objects and appends the
MessageFormat's pattern, with format elements replaced by the formatted objects, to the provided
StringBuffer.
|
StringBuffer |
NumberFormat.format(Object
Formats a number and appends the resulting text to the given string buffer.
|
StringBuffer |
DecimalFormat.format(Object
Formats a number and appends the resulting text to the given string buffer.
|
abstract StringBuffer |
Format.format(Object
Formats an object and appends the resulting text to a given string buffer.
|
StringBuffer |
DateFormat.format(Object
Overrides Format.
|
| Modifier and Type | Method and Description |
|---|---|
StringBuffer |
Matcher.appendTail(StringBuffer
Implements a terminal append-and-replace step.
|
| Modifier and Type | Method and Description |
|---|---|
Matcher |
Matcher.appendReplacement(StringBuffer
Implements a non-terminal append-and-replace step.
|
StringBuffer |
Matcher.appendTail(StringBuffer
Implements a terminal append-and-replace step.
|
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
Parser.parseMarkupDeclarations(StringBuffer
Parse markup declarations.
|