Home | History | Annotate | Download | only in collect

Lines Matching refs:RandomAccess

51 import java.util.RandomAccess;
95 * Confirm that get() returns a List that doesn't implement RandomAccess.
101 assertFalse(multimap.get("foo") instanceof RandomAccess);
102 assertFalse(multimap.get("bar") instanceof RandomAccess);
106 * Confirm that removeAll() returns a List that implements RandomAccess, even
113 assertTrue(multimap.removeAll("foo") instanceof RandomAccess);
114 assertTrue(multimap.removeAll("bar") instanceof RandomAccess);
118 * Confirm that replaceValues() returns a List that implements RandomAccess,
126 instanceof RandomAccess);
128 instanceof RandomAccess);