Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ListMultimap (0.15 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) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K 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) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
Back to top