- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ForwardingImmutableList (0.2 sec)
-
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingImmutableList.java
import org.jspecify.annotations.Nullable; /** * GWT emulated version of {@link ImmutableList}. TODO(cpovirk): more doc * * @author Hayward Chan */ abstract class ForwardingImmutableList<E> extends ImmutableList<E> { ForwardingImmutableList() {} abstract List<E> delegateList(); public int indexOf(@Nullable Object object) { return delegateList().indexOf(object); }
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-22 03:38 - 2.5K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableList.java
import java.util.List; /** * GWT emulated version of {@link SingletonImmutableList}. * * @author Hayward Chan */ final class SingletonImmutableList<E> extends ForwardingImmutableList<E> { final transient List<E> delegate; // This reference is used both by the custom field serializer, and by the // GWT compiler to infer the elements of the lists that needs to be // serialized.
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-21 03:10 - 1.3K bytes - Viewed (0)