Uses of Class
java.lang.StringBuffer
Packages that useStringBuffer
Package
Description
Provides for system input and output through data streams, serialization and the file system.
Provides classes that are fundamental to the design of the Java programming language.
Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages.
Classes for matching character sequences against patterns specified by regular expressions.
Provides the default HTML parser, along with support classes.
Uses ofStringBuffer injava.io
Methods injava.io that returnStringBufferUses ofStringBuffer injava.lang
Methods injava.lang that returnStringBufferModifier and TypeMethodDescriptionStringBuffer.append(boolean b) StringBuffer.append(char c) StringBuffer.append(char[] str) StringBuffer.append(char[] str, int offset, int len) StringBuffer.append(double d) StringBuffer.append(float f) StringBuffer.append(int i) StringBuffer.append(long lng) StringBuffer.append(CharSequence s) Appends the specifiedCharSequenceto this sequence.StringBuffer.append(CharSequence s, int start, int end) StringBuffer.append(StringBuffer sb) Appends the specifiedStringBufferto this sequence.StringBuffer.appendCodePoint(int codePoint) StringBuffer.delete(int start, int end) StringBuffer.deleteCharAt(int index) StringBuffer.insert(int offset, boolean b) StringBuffer.insert(int offset, char c) StringBuffer.insert(int offset, char[] str) StringBuffer.insert(int index, char[] str, int offset, int len) StringBuffer.insert(int offset, double d) StringBuffer.insert(int offset, float f) StringBuffer.insert(int offset, int i) StringBuffer.insert(int offset, long l) StringBuffer.insert(int dstOffset,CharSequence s) StringBuffer.insert(int dstOffset,CharSequence s, int start, int end) StringBuffer.reverse()Methods injava.lang with parameters of typeStringBufferModifier and TypeMethodDescriptionStringBuffer.append(StringBuffer sb) Appends the specifiedStringBufferto this sequence.StringBuilder.append(StringBuffer sb) Appends the specifiedStringBufferto this sequence.intStringBuffer.compareTo(StringBuffer another) Compares twoStringBufferinstances lexicographically.booleanString.contentEquals(StringBuffer sb) Compares this string to the specifiedStringBuffer.Constructors injava.lang with parameters of typeStringBufferModifierConstructorDescriptionString(StringBuffer buffer) Allocates a new string that contains the sequence of characters currently contained in the string buffer argument.Uses ofStringBuffer injava.text
Methods injava.text that returnStringBufferModifier and TypeMethodDescriptionChoiceFormat.format(double number,StringBuffer toAppendTo,FieldPosition status) Returns pattern with formatted double.ChoiceFormat.format(long number,StringBuffer toAppendTo,FieldPosition status) Specialization of format.CompactNumberFormat.format(double number,StringBuffer result,FieldPosition fieldPosition) Formats a double to produce a string representing its compact form.CompactNumberFormat.format(long number,StringBuffer result,FieldPosition fieldPosition) Formats a long to produce a string representing its compact form.finalStringBufferCompactNumberFormat.format(Object number,StringBuffer toAppendTo,FieldPosition fieldPosition) Formats a number to produce a string representing its compact form.finalStringBufferDateFormat.format(Object obj,StringBuffer toAppendTo,FieldPosition fieldPosition) Formats the givenObjectinto a date-time string.abstractStringBufferDateFormat.format(Date date,StringBuffer toAppendTo,FieldPosition fieldPosition) Formats aDateinto a date-time string.DecimalFormat.format(double number,StringBuffer result,FieldPosition fieldPosition) Formats a double to produce a string.DecimalFormat.format(long number,StringBuffer result,FieldPosition fieldPosition) Format a long to produce a string.finalStringBufferDecimalFormat.format(Object number,StringBuffer toAppendTo,FieldPosition pos) Formats a number and appends the resulting text to the given string buffer.abstractStringBufferFormat.format(Object obj,StringBuffer toAppendTo,FieldPosition pos) Formats an object and appends the resulting text to a given string buffer.finalStringBufferMessageFormat.format(Object[] arguments,StringBuffer result,FieldPosition pos) Formats an array of objects and appends theMessageFormat's pattern, with format elements replaced by the formatted objects, to the providedStringBuffer.finalStringBufferMessageFormat.format(Object arguments,StringBuffer result,FieldPosition pos) Formats an array of objects and appends theMessageFormat's pattern, with format elements replaced by the formatted objects, to the providedStringBuffer.abstractStringBufferNumberFormat.format(double number,StringBuffer toAppendTo,FieldPosition pos) Specialization of format.abstractStringBufferNumberFormat.format(long number,StringBuffer toAppendTo,FieldPosition pos) Specialization of format.NumberFormat.format(Object number,StringBuffer toAppendTo,FieldPosition pos) Formats a number and appends the resulting text to the given string buffer.SimpleDateFormat.format(Date date,StringBuffer toAppendTo,FieldPosition pos) Formats the givenDateinto a date/time string and appends the result to the givenStringBuffer.Methods injava.text with parameters of typeStringBufferModifier and TypeMethodDescriptionChoiceFormat.format(double number,StringBuffer toAppendTo,FieldPosition status) Returns pattern with formatted double.ChoiceFormat.format(long number,StringBuffer toAppendTo,FieldPosition status) Specialization of format.CompactNumberFormat.format(double number,StringBuffer result,FieldPosition fieldPosition) Formats a double to produce a string representing its compact form.CompactNumberFormat.format(long number,StringBuffer result,FieldPosition fieldPosition) Formats a long to produce a string representing its compact form.finalStringBufferCompactNumberFormat.format(Object number,StringBuffer toAppendTo,FieldPosition fieldPosition) Formats a number to produce a string representing its compact form.finalStringBufferDateFormat.format(Object obj,StringBuffer toAppendTo,FieldPosition fieldPosition) Formats the givenObjectinto a date-time string.abstractStringBufferDateFormat.format(Date date,StringBuffer toAppendTo,FieldPosition fieldPosition) Formats aDateinto a date-time string.DecimalFormat.format(double number,StringBuffer result,FieldPosition fieldPosition) Formats a double to produce a string.DecimalFormat.format(long number,StringBuffer result,FieldPosition fieldPosition) Format a long to produce a string.finalStringBufferDecimalFormat.format(Object number,StringBuffer toAppendTo,FieldPosition pos) Formats a number and appends the resulting text to the given string buffer.abstractStringBufferFormat.format(Object obj,StringBuffer toAppendTo,FieldPosition pos) Formats an object and appends the resulting text to a given string buffer.finalStringBufferMessageFormat.format(Object[] arguments,StringBuffer result,FieldPosition pos) Formats an array of objects and appends theMessageFormat's pattern, with format elements replaced by the formatted objects, to the providedStringBuffer.finalStringBufferMessageFormat.format(Object arguments,StringBuffer result,FieldPosition pos) Formats an array of objects and appends theMessageFormat's pattern, with format elements replaced by the formatted objects, to the providedStringBuffer.abstractStringBufferNumberFormat.format(double number,StringBuffer toAppendTo,FieldPosition pos) Specialization of format.abstractStringBufferNumberFormat.format(long number,StringBuffer toAppendTo,FieldPosition pos) Specialization of format.NumberFormat.format(Object number,StringBuffer toAppendTo,FieldPosition pos) Formats a number and appends the resulting text to the given string buffer.SimpleDateFormat.format(Date date,StringBuffer toAppendTo,FieldPosition pos) Formats the givenDateinto a date/time string and appends the result to the givenStringBuffer.Uses ofStringBuffer injava.util.regex
Methods injava.util.regex that returnStringBufferModifier and TypeMethodDescriptionMatcher.appendTail(StringBuffer sb) Implements a terminal append-and-replace step.Methods injava.util.regex with parameters of typeStringBufferModifier and TypeMethodDescriptionMatcher.appendReplacement(StringBuffer sb,String replacement) Implements a non-terminal append-and-replace step.Matcher.appendTail(StringBuffer sb) Implements a terminal append-and-replace step.Uses ofStringBuffer injavax.swing.text.html.parser
Methods injavax.swing.text.html.parser with parameters of typeStringBufferModifier and TypeMethodDescriptionprotected booleanParser.parseMarkupDeclarations(StringBuffer strBuff) Parse markup declarations.