Searched defs:unusedToForceReturnType (Results 1 - 3 of 3) sorted by relevance

/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
H A DIsEmptyCollection.java46 * @param unusedToForceReturnType
50 public static <E> Matcher<Collection<E>> emptyCollectionOf(Class<E> unusedToForceReturnType) { argument
H A DIsEmptyIterable.java41 * @param unusedToForceReturnType
45 public static <E> Matcher<Iterable<E>> emptyIterableOf(Class<E> unusedToForceReturnType) { argument
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
H A DMatchers.java816 * @param unusedToForceReturnType
819 public static <E> org.hamcrest.Matcher<java.util.Collection<E>> emptyCollectionOf(java.lang.Class<E> unusedToForceReturnType) { argument
820 return org.hamcrest.collection.IsEmptyCollection.<E>emptyCollectionOf(unusedToForceReturnType);
837 * @param unusedToForceReturnType
840 public static <E> org.hamcrest.Matcher<java.lang.Iterable<E>> emptyIterableOf(java.lang.Class<E> unusedToForceReturnType) { argument
841 return org.hamcrest.collection.IsEmptyIterable.<E>emptyIterableOf(unusedToForceReturnType);

Completed in 258 milliseconds