@@ -104,7 +104,6 @@ public static String trim( String str )
104
104
*
105
105
* @param str String target to delete whitespace from
106
106
* @return the String without whitespace
107
- * @throws NullPointerException
108
107
*/
109
108
@ Nonnull public static String deleteWhitespace ( @ Nonnull String str )
110
109
{
@@ -122,7 +121,7 @@ public static String trim( String str )
122
121
123
122
/**
124
123
* <p>Checks if a String is non <code>null</code> and is
125
- * not empty (<code>length > 0</code>).</p>
124
+ * not empty (<code>length > 0</code>).</p>
126
125
*
127
126
* @param str the String to check
128
127
* @return true if the String is non-null, and not length zero
@@ -816,7 +815,7 @@ public static String replace( @Nullable String text, @Nullable String repl, @Nul
816
815
//--------------------------------------------------------------------------
817
816
818
817
/**
819
- * <p>Center a String in a larger String of size <code>n</code>.<p>
818
+ * <p>Center a String in a larger String of size <code>n</code>.</ p>
820
819
*
821
820
* <p>Uses spaces as the value to buffer the String with.
822
821
* Equivalent to <code>center(str, size, " ")</code>.</p>
@@ -1174,7 +1173,7 @@ else if ( ch < 32 )
1174
1173
* @param str String to repeat
1175
1174
* @param repeat number of times to repeat str
1176
1175
* @return String with repeated String
1177
- * @throws NegativeArraySizeException if <code>repeat < 0</code>
1176
+ * @throws NegativeArraySizeException if <code>repeat < 0</code>
1178
1177
* @throws NullPointerException if str is <code>null</code>
1179
1178
*/
1180
1179
@ Nonnull public static String repeat ( @ Nonnull String str , int repeat )
@@ -1979,14 +1978,12 @@ private static void reverseArray( @Nonnull String... array )
1979
1978
//--------------------------------------------------------------------------
1980
1979
1981
1980
/**
1982
- * Turn "Now is the time for all good men" into "Now is the time for..."
1983
- * <p/>
1984
- * Specifically:
1985
- * <p/>
1986
- * If str is less than max characters long, return it.
1981
+ * <p>Turn "Now is the time for all good men" into "Now is the time for..."</p>
1982
+ * <p>Specifically:</p>
1983
+ * <p>If str is less than max characters long, return it.
1987
1984
* Else abbreviate it to (substring(str, 0, max-3) + "...").
1988
1985
* If maxWidth is less than 3, throw an IllegalArgumentException.
1989
- * In no case will it return a string of length greater than maxWidth.
1986
+ * In no case will it return a string of length greater than maxWidth.</p>
1990
1987
*
1991
1988
* @param s The string to be abbreviated.
1992
1989
* @param maxWidth maximum length of result string
@@ -1999,12 +1996,13 @@ private static void reverseArray( @Nonnull String... array )
1999
1996
2000
1997
/**
2001
1998
* Turn "Now is the time for all good men" into "...is the time for..."
2002
- * <p/ >
1999
+ * <p>
2003
2000
* Works like abbreviate(String, int), but allows you to specify a "left edge"
2004
2001
* offset. Note that this left edge is not necessarily going to be the leftmost
2005
2002
* character in the result, or the first
2006
2003
* character following the ellipses, but it will appear somewhere in the result.
2007
2004
* In no case will it return a string of length greater than maxWidth.
2005
+ * </p>
2008
2006
*
2009
2007
* @param s String to abbreviate.
2010
2008
* @param offset left edge of source string
@@ -2051,8 +2049,9 @@ private static void reverseArray( @Nonnull String... array )
2051
2049
* Compare two strings, and return the portion where they differ.
2052
2050
* (More precisely, return the remainder of the second string,
2053
2051
* starting from where it's different from the first.)
2054
- * <p/>
2055
- * E.g. strdiff("i am a machine", "i am a robot") -> "robot"
2052
+ * <p>
2053
+ * E.g. strdiff("i am a machine", "i am a robot") → "robot"
2054
+ * </p>
2056
2055
*
2057
2056
* @param s1 The first string.
2058
2057
* @param s2 The second string.
@@ -2071,7 +2070,7 @@ public static String difference( @Nonnull String s1, @Nonnull String s2 )
2071
2070
/**
2072
2071
* Compare two strings, and return the index at which the strings begin to differ.
2073
2072
* <p>
2074
- * E.g. strdiff("i am a machine", "i am a robot") -> 7
2073
+ * E.g. strdiff("i am a machine", "i am a robot") → 7
2075
2074
* </p>
2076
2075
*
2077
2076
* @param s1 The first string.
@@ -2188,7 +2187,6 @@ public static String interpolate( String text, @Nonnull Map<?, ?> namespace )
2188
2187
/**
2189
2188
* Converts the first character of the given String to lowercase.
2190
2189
* This method does <i>not</i> trim spaces!
2191
- * <p/>
2192
2190
*
2193
2191
* @param data the String to get it's first character lower-cased.
2194
2192
* @return data string with the first character transformed to lowercase
@@ -2205,9 +2203,8 @@ public static String interpolate( String text, @Nonnull Map<?, ?> namespace )
2205
2203
}
2206
2204
2207
2205
/**
2208
- * Take the input string and un-camel-case it.
2209
- * <p/>
2210
- * 'ThisIsIt' will become 'this-is-it'.
2206
+ * <p>Take the input string and un-camel-case it.</p>
2207
+ * <p>'ThisIsIt' will become 'this-is-it'.</p>
2211
2208
*
2212
2209
* @param view the view
2213
2210
* @return deHumped String
@@ -2519,7 +2516,6 @@ public static boolean contains( @Nullable String str, @Nullable String searchStr
2519
2516
2520
2517
/**
2521
2518
* <p>Checks if String ends with a search String, handling <code>null</code>.</p>
2522
- * <p/>
2523
2519
* <p>A <code>null</code> String will return <code>false</code>.</p>
2524
2520
*
2525
2521
* <pre>
0 commit comments