-
Methods in java.text with parameters of type FieldPosition
| Modifier and Type |
Method |
Description |
StringBuffer |
ChoiceFormat.format(double value,
StringBuffer buffer,
FieldPosition field) |
Appends the string associated with the range in which the specified
double value fits to the specified string buffer.
|
StringBuffer |
ChoiceFormat.format(long value,
StringBuffer buffer,
FieldPosition field) |
Appends the string associated with the range in which the specified long
value fits to the specified string buffer.
|
StringBuffer |
DateFormat.format(Object object,
StringBuffer buffer,
FieldPosition field) |
Formats the specified object as a string using the pattern of this date
format and appends the string to the specified string buffer.
|
abstract StringBuffer |
DateFormat.format(Date date,
StringBuffer buffer,
FieldPosition field) |
Formats the specified date as a string using the pattern of this date
format and appends the string to the specified string buffer.
|
StringBuffer |
DecimalFormat.format(double value,
StringBuffer buffer,
FieldPosition position) |
|
StringBuffer |
DecimalFormat.format(long value,
StringBuffer buffer,
FieldPosition position) |
|
StringBuffer |
DecimalFormat.format(Object number,
StringBuffer buffer,
FieldPosition position) |
|
abstract StringBuffer |
Format.format(Object object,
StringBuffer buffer,
FieldPosition field) |
Appends the specified object to the specified string buffer using the
rules of this format.
|
StringBuffer |
MessageFormat.format(Object[] objects,
StringBuffer buffer,
FieldPosition field) |
Converts the specified objects into a string which it appends to the
specified string buffer using the pattern of this message format.
|
StringBuffer |
MessageFormat.format(Object object,
StringBuffer buffer,
FieldPosition field) |
Converts the specified objects into a string which it appends to the
specified string buffer using the pattern of this message format.
|
abstract StringBuffer |
NumberFormat.format(double value,
StringBuffer buffer,
FieldPosition field) |
Formats the specified double value as a string using the pattern of this
number format and appends the string to the specified string buffer.
|
abstract StringBuffer |
NumberFormat.format(long value,
StringBuffer buffer,
FieldPosition field) |
Formats the specified long value as a string using the pattern of this
number format and appends the string to the specified string buffer.
|
StringBuffer |
NumberFormat.format(Object object,
StringBuffer buffer,
FieldPosition field) |
Formats a number into a supplied buffer.
|
StringBuffer |
SimpleDateFormat.format(Date date,
StringBuffer buffer,
FieldPosition fieldPos) |
Formats the specified date as a string using the pattern of this date
format and appends the string to the specified string buffer.
|
-