And if you want to save yourself the PITA, just throw in apache commons lang jar into your own foundation framework and use the many useful standardized utilities that are in there:
http://commons.apache.org/lang/

For example check out StringUtilis.isBlank(...) and StringUtils.isEmpty(...) at
http://commons.apache.org/lang/api-release/index.html

regards, Kieran




On Sep 7, 2007, at 2:52 PM, Lachlan Deck wrote:

Hi there,

On 07/09/2007, at 7:44 PM, Rainer User wrote:

i am new at the webobjects-dev maillist and new to webobjects too.

I am reading the white printed book "Webobjects 5, Web Applications", from Apple, it was included in the Webobjects Package of my Webobject-Box.

On Page 84 i found an example where a funktion trys to detect if a variable named "personName" [type of it is "String"] is empty or not.

The substantial Code says:

if (personName==null || personName.equals(""))
{
        return(true);
}
else
{
        return(false);
}

Further to what others have said it is also sometimes helpful to test for whitespace strings. e.g., " " and treat them as empty also. And it's often helpful to trim a string of surrounding whitespace...

public static boolean isEmptyString(String value) {
        return value == null || value.matches( "^\\s*$" );
}

public void setFirstName(String firstName) {
        if (isEmptyString(firstName))
                this.firstName = null;
        else
                this.firstName = firstName.trim();
}

with regards,
--

Lachlan Deck



_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/kieran_lists% 40mac.com

This email sent to [EMAIL PROTECTED]

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to