Check whether the given String has actual text. : String Parser « Data Type « Java






Check whether the given String has actual text.

     
/*
 * Copyright 2002-2007 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//package jacky.lanlan.song.extension.struts.util;

/**
 * Miscellaneous {@link String} utility methods.
 *
 * <p>Mainly for internal use within the framework; consider
 * <a href="http://jakarta.apache.org/commons/lang/">Jakarta's Commons Lang</a>
 * for a more comprehensive suite of
 * {@link org.apache.commons.lang.StringUtils String utilities}.
 *
 * <p>This class delivers some simple functionality that should really
 * be provided by the core Java <code>String</code> and {@link StringBuffer}
 * classes, such as the ability to {@link #replace} all occurrences of a given
 * substring in a target string. It also provides easy-to-use methods to
 * convert between delimited strings, such as CSV strings, and collections and
 * arrays.
 *
 * @author Rod Johnson
 * @author Juergen Hoeller
 * @author Keith Donald
 * @author Rob Harrop
 * @author Rick Evans
 * @author Jacky.Song
 * @since 16 April 2001
 */
abstract class StringUtils {


  /**
   * Check whether the given String has actual text.
   * More specifically, returns <code>true</code> if the string not <code>null</code>,
   * its length is greater than 0, and it contains at least one non-whitespace character.
   * <p><pre>
   * StringUtils.hasText(null) = false
   * StringUtils.hasText("") = false
   * StringUtils.hasText(" ") = false
   * StringUtils.hasText("12345") = true
   * StringUtils.hasText(" 12345 ") = true
   * </pre>
   * @param str the String to check (may be <code>null</code>)
   * @return <code>true</code> if the String is not <code>null</code>, its length is
   * greater than 0, and it does not contain whitespace only
   * @see java.lang.Character#isWhitespace
   */
  public static boolean hasText(String str) {
    if (!hasLength(str)) {
      return false;
    }
    int strLen = str.length();
    for (int i = 0; i < strLen; i++) {
      if (!Character.isWhitespace(str.charAt(i))) {
        return true;
      }
    }
    return false;
  }
  /**
   * Check that the given String is neither <code>null</code> nor of length 0.
   * Note: Will return <code>true</code> for a String that purely consists of whitespace.
   * <p><pre>
   * StringUtils.hasLength(null) = false
   * StringUtils.hasLength("") = false
   * StringUtils.hasLength(" ") = true
   * StringUtils.hasLength("Hello") = true
   * </pre>
   * @param str the String to check (may be <code>null</code>)
   * @return <code>true</code> if the String is not null and has length
   * @see #hasText(String)
   */
  public static boolean hasLength(String str) {
    return (str != null && str.length() > 0);
  }

}

   
    
    
    
    
  








Related examples in the same category

1.Parse Comma Delimited List
2.Parse Fraction
3.Parse String to array of Strings while treating quoted values as single element
4.Parse a method signature or method call signature
5.Parse basic types
6.Decodes a String with Numeric Character References
7.Returns true if the argument contains a number
8.Normalize a SQL identifer, up-casing if , and handling of (SQL 2003, section 5.2).
9.Convert a String to an int, returning zero if the conversion fails.
10.Parsing primitives from String's without creating any objects
11.Checks whether the String a valid Java number.