diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java
index 9e877473f..d13f59f42 100644
--- a/src/java/org/apache/commons/lang/StringUtils.java
+++ b/src/java/org/apache/commons/lang/StringUtils.java
@@ -63,56 +63,56 @@ import java.util.List;
*
*
* - IsEmpty/IsBlank
- * - checks if a String contains text
+ * - checks if a String contains text
* - Trim/Strip
- * - removes leading and trailing whitespace
+ * - removes leading and trailing whitespace
* - Equals
- * - compares two strings null-safe
+ * - compares two strings null-safe
* - IndexOf/LastIndexOf/Contains
* - null-safe index-of checks
*
- IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut
- * - index-of any of a set of Strings
+ * - index-of any of a set of Strings
* - ContainsOnly/ContainsNone
- * - does String contains only/none of these characters
+ * - does String contains only/none of these characters
* - SubString/Left/Right/Mid/SubStringBefore/SubStringAfter
- * - null-safe substring extractions
+ * - null-safe substring extractions
* - Split/Join
- * - splits a String into an array of substrings and vice versa
+ * - splits a String into an array of substrings and vice versa
* - Replace/Delete/Overlay
- * - Searches a String and replaces one String with another
+ * - Searches a String and replaces one String with another
* - Chomp/Chop
- * - removes the last part of a String
+ * - removes the last part of a String
* - LeftPad/RightPad/Center/Repeat
- * - pads a String
+ * - pads a String
* - UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize
- * - changes the case of a String
+ * - changes the case of a String
* - NestedString
- * - returns a substring nested within other Strings
+ * - returns a substring nested within other Strings
* - CountMatches
- * - counts the number of occurrances of one String in another
+ * - counts the number of occurrances of one String in another
* - IsAlpha/IsNumeric/IsWhitespace
- * - checks the characters in a String
+ * - checks the characters in a String
* - DefaultString
- * - protects against a null input String
+ * - protects against a null input String
* - Reverse/ReverseDelimited
- * - reverses a String
+ * - reverses a String
* - Abbreviate
- * - abbreviates a string using ellipsis
+ * - abbreviates a string using ellipsis
* - Difference
- * - compares two Strings and reports on their differences
+ * - compares two Strings and reports on their differences
* - LevensteinDistance
- * - the number of changes needed to change one String into another
+ * - the number of changes needed to change one String into another
*
*
* The StringUtils
class defines certain words related to
* String handling.
*
*
- * - null -
null
- * - empty - a zero-length string (
""
)
- * - space - the space character (
' '
, char 32)
- * - whitespace - the characters defined by {@link Character#isWhitespace(char)}
- *
- trim - the characters <= 32 as in {@link String#trim()}
+ *
- null -
null
+ * - empty - a zero-length string (
""
)
+ * - space - the space character (
' '
, char 32)
+ * - whitespace - the characters defined by {@link Character#isWhitespace(char)}
+ * - trim - the characters <= 32 as in {@link String#trim()}
*
*
* StringUtils
handles null
input Strings quietly.
@@ -145,7 +145,7 @@ import java.util.List;
* @author Gary Gregory
* @author Phil Steitz
* @since 1.0
- * @version $Id: StringUtils.java,v 1.98 2003/08/14 01:49:03 ggregory Exp $
+ * @version $Id: StringUtils.java,v 1.99 2003/08/14 02:20:48 ggregory Exp $
*/
public class StringUtils {
// Performance testing notes (JDK 1.4, Jul03, scolebourne)
@@ -3498,10 +3498,10 @@ public class StringUtils {
*
Swaps the case of a String using a word based algorithm.
*
*
- * - Upper case character converts to Lower case
- *
- Title case character converts to Lower case
- *
- Lower case character after Whitespace or at start converts to Title case
- *
- Other Lower case character converts to Upper case
+ *
- Upper case character converts to Lower case
+ * - Title case character converts to Lower case
+ * - Lower case character after Whitespace or at start converts to Title case
+ * - Other Lower case character converts to Upper case
*
*
* Whitespace is defined by {@link Character#isWhitespace(char)}.