Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ListMultimap (0.07 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

              K extends @Nullable Object, V extends @Nullable Object>
          extends UnmodifiableMultimap<K, V> implements ListMultimap<K, V> {
        UnmodifiableListMultimap(ListMultimap<K, V> delegate) {
          super(delegate);
        }
    
        @Override
        public ListMultimap<K, V> delegate() {
          return (ListMultimap<K, V>) super.delegate();
        }
    
        @Override
        public List<V> get(@ParametricNullness K key) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedMultimap<K, V> implements ListMultimap<K, V> {
        SynchronizedListMultimap(ListMultimap<K, V> delegate, @CheckForNull Object mutex) {
          super(delegate, mutex);
        }
    
        @Override
        ListMultimap<K, V> delegate() {
          return (ListMultimap<K, V>) super.delegate();
        }
    
        @Override
        public List<V> get(K key) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedMultimap<K, V> implements ListMultimap<K, V> {
        SynchronizedListMultimap(ListMultimap<K, V> delegate, @CheckForNull Object mutex) {
          super(delegate, mutex);
        }
    
        @Override
        ListMultimap<K, V> delegate() {
          return (ListMultimap<K, V>) super.delegate();
        }
    
        @Override
        public List<V> get(K key) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top