Home | History | Annotate | Download | only in util

Lines Matching refs:stringBuilder

46         StringBuilder normalizedDigits = new StringBuilder(number.length());
59 * Appends text to the stringBuilder.
60 * If stringBuilder already has content, separator is prepended to create a separator between
62 * @param stringBuilder The stringBuilder to add to
66 public static void appendWithSeparator(final StringBuilder stringBuilder, final String text,
68 if (stringBuilder.length() > 0) {
69 stringBuilder.append(separator);
71 stringBuilder.append(text);