You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Yandell (JIRA)" <ji...@apache.org> on 2009/11/14 11:13:39 UTC

[jira] Commented: (LANG-330) Add StringBufferUtils or overload StringUtils methods

    [ https://issues.apache.org/jira/browse/LANG-330?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12777868#action_12777868 ] 

Henri Yandell commented on LANG-330:
------------------------------------

Note that it's 2 duplicates for repeat.

> Add StringBufferUtils or overload StringUtils methods
> -----------------------------------------------------
>
>                 Key: LANG-330
>                 URL: https://issues.apache.org/jira/browse/LANG-330
>             Project: Commons Lang
>          Issue Type: New Feature
>            Reporter: Jörg Gottschling
>             Fix For: 3.0
>
>
> There's especially one group of methods you should overload with StringBuffer (or Appendable in a special JDK5 Class?):
> StringUtils.join
> It should take a StringBuffer (/Appendable) as first Argument to which the Strings will be added.
> Usage Example:
> StringBuffer sql = new StringBuffer("SELECT * FROM foo WHERE bar IN (");
> StringUtils.join(sql, bars, ", ");
> sql.append(") AND bar NOT IN (");
> StringUtils.join(sql, noBars, ", ");
> sql.append(");");

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.