Searched defs:RegularImmutableList (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularImmutableList.java22 * GWT emulated version of {@link RegularImmutableList}.
26 class RegularImmutableList<E> extends ImmutableList<E> { class in inherits:ImmutableList
27 RegularImmutableList(List<E> delegate) { method in class:RegularImmutableList
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableList.java33 class RegularImmutableList<E> extends ImmutableList<E> { class in inherits:ImmutableList
38 RegularImmutableList(Object[] array, int offset, int size) { method in class:RegularImmutableList
44 RegularImmutableList(Object[] array) { method in class:RegularImmutableList
121 : new RegularImmutableList<E>(
150 if (object instanceof RegularImmutableList) {
151 RegularImmutableList<?> other = (RegularImmutableList<?>) object;

Completed in 76 milliseconds