Added StringUtils defaultString variation TODO
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137069 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e0722ed784
commit
34d80b34e3
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<h1>The Jakarta Commons <em>Lang</em> Component</h1>
|
<h1>The Jakarta Commons <em>Lang</em> Component</h1>
|
||||||
$Id: STATUS.html,v 1.19 2002/09/21 08:11:18 scolebourne Exp $<br />
|
$Id: STATUS.html,v 1.20 2002/09/27 19:24:11 stevencaswell Exp $<br />
|
||||||
<a href="#Introduction">[Introduction]</a>
|
<a href="#Introduction">[Introduction]</a>
|
||||||
<a href="#Dependencies">[Dependencies]</a>
|
<a href="#Dependencies">[Dependencies]</a>
|
||||||
<a href="#Release Info">[Release Info]</a>
|
<a href="#Release Info">[Release Info]</a>
|
||||||
|
@ -89,6 +89,8 @@ still under discussion, so please mail the list before actioning.</p>
|
||||||
<li>StringUtils parseBoolean method - This method is in OSCore's TextUtils and seems very reusable. It could go in a BooleanUtils if such a need was seen. [CODED]</li>
|
<li>StringUtils parseBoolean method - This method is in OSCore's TextUtils and seems very reusable. It could go in a BooleanUtils if such a need was seen. [CODED]</li>
|
||||||
<li>StringUtils uncapitaliseAllWords method - String Taglib has shown that this method is missing from StringUtils. [CODED]</li>
|
<li>StringUtils uncapitaliseAllWords method - String Taglib has shown that this method is missing from StringUtils. [CODED]</li>
|
||||||
<li>StringUtils unescape method - String Taglib has shown that this method is missing from StringUtils. It would take a String with "\n" in and convert it to the Java character. unescape and escape should be symmetric. </li>
|
<li>StringUtils unescape method - String Taglib has shown that this method is missing from StringUtils. It would take a String with "\n" in and convert it to the Java character. unescape and escape should be symmetric. </li>
|
||||||
|
<li>StringUtils defaultStirng(Object) method - simliar behavior to defaultString(String), returns obj.toString() if obj != null, "" otherwise
|
||||||
|
<li>StringUtils defaultString(Object, String) method - similar behavior to defaultString(String, String), returns obj.toString() if obj != null, specified string otherwise
|
||||||
<li>ArrayUtils - opinion seems to be that this belongs with [lang] and not [collections]
|
<li>ArrayUtils - opinion seems to be that this belongs with [lang] and not [collections]
|
||||||
<li>GUID and other Identifier generators - these may belong in [util], some code exists in [pattern] at the moment
|
<li>GUID and other Identifier generators - these may belong in [util], some code exists in [pattern] at the moment
|
||||||
<li>CharUtils - Utilities to work on a char[] in the same way as a String
|
<li>CharUtils - Utilities to work on a char[] in the same way as a String
|
||||||
|
|
Loading…
Reference in New Issue