am d5455fea: Merge "Add null analysis annotation to CollectionUtils"
* commit 'd5455fea4ad710e4b31890affe8efab948fe586e': Add null analysis annotation to CollectionUtilsmain
commit
d2bca0257d
|
@ -19,15 +19,17 @@ package com.android.inputmethod.latin.utils;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
|
||||||
|
import javax.annotation.Nonnull;
|
||||||
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
public final class CollectionUtils {
|
public final class CollectionUtils {
|
||||||
private CollectionUtils() {
|
private CollectionUtils() {
|
||||||
// This utility class is not publicly instantiable.
|
// This utility class is not publicly instantiable.
|
||||||
}
|
}
|
||||||
|
|
||||||
public static <E> ArrayList<E> arrayAsList(final E[] array, final int start, final int end) {
|
@Nonnull
|
||||||
if (array == null) {
|
public static <E> ArrayList<E> arrayAsList(@Nonnull final E[] array, final int start,
|
||||||
throw new NullPointerException();
|
final int end) {
|
||||||
}
|
|
||||||
if (start < 0 || start > end || end > array.length) {
|
if (start < 0 || start > end || end > array.length) {
|
||||||
throw new IllegalArgumentException();
|
throw new IllegalArgumentException();
|
||||||
}
|
}
|
||||||
|
@ -44,7 +46,7 @@ public final class CollectionUtils {
|
||||||
* @param c Collection to test.
|
* @param c Collection to test.
|
||||||
* @return Whether c contains no elements.
|
* @return Whether c contains no elements.
|
||||||
*/
|
*/
|
||||||
public static boolean isNullOrEmpty(final Collection<?> c) {
|
public static boolean isNullOrEmpty(@Nullable final Collection<?> c) {
|
||||||
return c == null || c.isEmpty();
|
return c == null || c.isEmpty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,5 +51,4 @@ public class CollectionUtilsTests extends AndroidTestCase {
|
||||||
assertTrue(CollectionUtils.isNullOrEmpty(Collections.EMPTY_SET));
|
assertTrue(CollectionUtils.isNullOrEmpty(Collections.EMPTY_SET));
|
||||||
assertFalse(CollectionUtils.isNullOrEmpty(Collections.singleton("Not empty")));
|
assertFalse(CollectionUtils.isNullOrEmpty(Collections.singleton("Not empty")));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue