Formatted and cleaned up sources

This commit is contained in:
Patrick Gotthard 2014-05-13 19:28:52 +02:00
parent 50425fd263
commit 532ff8e6fe
4 changed files with 14 additions and 8 deletions

View file

@ -69,11 +69,13 @@ public final class Lists {
} }
/** /**
* Checks whether the list has the given size. A null list is treated like a list without entries. * Checks whether the list has the given size. A null list is treated like a list without
* entries.
* *
* @param list The list to check * @param list The list to check
* @param size The size to check * @param size The size to check
* @return true when the list has the given size or when size = 0 and the list is null, false otherwise * @return true when the list has the given size or when size = 0 and the list is null, false
* otherwise
*/ */
public static boolean sizeIs(final List<?> list, final int size) { public static boolean sizeIs(final List<?> list, final int size) {
if (size == 0) { if (size == 0) {

View file

@ -62,10 +62,12 @@ public final class Strings {
} }
/** /**
* Removes the whitespace at the beginning and end of a String. When the String only contains whitespace, it returns null. * Removes the whitespace at the beginning and end of a String. When the String only contains
* whitespace, it returns null.
* *
* @param s The String to trim, may be null * @param s The String to trim, may be null
* @return null when the input String is null or does only contain whitespace, the trimmed String otherwise * @return null when the input String is null or does only contain whitespace, the trimmed
* String otherwise
*/ */
public static String trimToNull(final String s) { public static String trimToNull(final String s) {
final String trimmed = trim(s); final String trimmed = trim(s);
@ -77,10 +79,12 @@ public final class Strings {
} }
/** /**
* Removes the whitespace at the beginning and end of a String. When the String only contains whitespace, it returns null. * Removes the whitespace at the beginning and end of a String. When the String only contains
* whitespace, it returns null.
* *
* @param s The String to trim, may be null * @param s The String to trim, may be null
* @return null when the input String is null or does only contain whitespace, the trimmed String otherwise * @return null when the input String is null or does only contain whitespace, the trimmed
* String otherwise
*/ */
public static String trimToEmpty(final String s) { public static String trimToEmpty(final String s) {
final String trimmed = trim(s); final String trimmed = trim(s);