You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/12/20 14:51:14 UTC

svn commit: r1552671 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java

Author: britter
Date: Fri Dec 20 13:51:14 2013
New Revision: 1552671

URL: http://svn.apache.org/r1552671
Log:
Missing since tags for StringUtils

Modified:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java?rev=1552671&r1=1552670&r2=1552671&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java Fri Dec 20 13:51:14 2013
@@ -252,6 +252,7 @@ public class StringUtils {
      *
      * @param css  the CharSequences to check, may be null or empty
      * @return {@code true} if any of the CharSequences are empty or null
+     * @since 3.2
      */
     public static boolean isAnyEmpty(CharSequence... css) {
       if (ArrayUtils.isEmpty(css)) {
@@ -280,6 +281,7 @@ public class StringUtils {
      *
      * @param css  the CharSequences to check, may be null or empty
      * @return {@code true} if none of the CharSequences are empty or null
+     * @since 3.2
      */
     public static boolean isNoneEmpty(CharSequence... css) {
       return !isAnyEmpty(css);
@@ -350,6 +352,7 @@ public class StringUtils {
      *
      * @param css  the CharSequences to check, may be null or empty
      * @return {@code true} if any of the CharSequences are blank or null or whitespace only
+     * @since 3.2
      */
     public static boolean isAnyBlank(CharSequence... css) {
       if (ArrayUtils.isEmpty(css)) {
@@ -379,6 +382,7 @@ public class StringUtils {
      *
      * @param css  the CharSequences to check, may be null or empty
      * @return {@code true} if none of the CharSequences are blank or null or whitespace only
+     * @since 3.2
      */
     public static boolean isNoneBlank(CharSequence... css) {
       return !isAnyBlank(css);