Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getNextInKeyBucket (0.12 sec)

  1. guava/src/com/google/common/collect/ImmutableMapEntry.java

      }
    
      ImmutableMapEntry(ImmutableMapEntry<K, V> contents) {
        super(contents.getKey(), contents.getValue());
        // null check would be redundant
      }
    
      @CheckForNull
      ImmutableMapEntry<K, V> getNextInKeyBucket() {
        return null;
      }
    
      @CheckForNull
      ImmutableMapEntry<K, V> getNextInValueBucket() {
        return null;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top