appendFormat abstract method

StringBuffer appendFormat(
  1. T value,
  2. StringBuffer builder
)

Formats the given value as text according to the rules of this pattern, appending to the given StringBuilder.

  • value: The value to format.
  • builder: The StringBuilder to append to.

Returns: The builder passed in as builder.

Implementation

StringBuffer appendFormat(T value, StringBuffer builder);