Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for valueOrNull (0.08 sec)

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

        return seekByValue(value, smearedHash(value)) != null;
      }
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        return Maps.valueOrNull(seekByKey(key, smearedHash(key)));
      }
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V put(@ParametricNullness K key, @ParametricNullness V value) {
        return put(key, value, false);
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

      static <K extends @Nullable Object> K keyOrNull(@CheckForNull Entry<K, ?> entry) {
        return (entry == null) ? null : entry.getKey();
      }
    
      @CheckForNull
      static <V extends @Nullable Object> V valueOrNull(@CheckForNull Entry<?, V> entry) {
        return (entry == null) ? null : entry.getValue();
      }
    
      static class SortedKeySet<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

      static <K extends @Nullable Object> K keyOrNull(@CheckForNull Entry<K, ?> entry) {
        return (entry == null) ? null : entry.getKey();
      }
    
      @CheckForNull
      static <V extends @Nullable Object> V valueOrNull(@CheckForNull Entry<?, V> entry) {
        return (entry == null) ? null : entry.getValue();
      }
    
      static class SortedKeySet<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top