Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Value (0.14 sec)

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

                Entry<K, V> entry = requireNonNull(entryArray[i]);
                Object key = entry.getKey();
                Object value = entry.getValue();
                checkEntryNotNull(key, value);
                keys[i] = key;
                values[i] = value;
              }
            } else {
              // Need to sort and check for nulls and dupes.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public boolean containsValue(@CheckForNull Object value) {
          return map.containsValue(value);
        }
    
        @Override
        public boolean containsEntry(@CheckForNull Object key, @CheckForNull Object value) {
          return map.entrySet().contains(Maps.immutableEntry(key, value));
        }
    
        @Override
        public Set<V> get(@ParametricNullness final 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)
  3. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns an iterator containing only {@code value}.
       *
       * <p>The {@link Iterable} equivalent of this method is {@link Collections#singleton}.
       */
      public static <T extends @Nullable Object> UnmodifiableIterator<T> singletonIterator(
          @ParametricNullness T value) {
        if (value != null) {
          return new SingletonIterator<>(value);
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 51.1K bytes
    - Viewed (0)
Back to top