Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StandardValues (0.07 sec)

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

       * to forward to this implementation or a subclass thereof.
       *
       * @since 10.0
       */
      protected class StandardValues extends Maps.Values<K, V> {
        /** Constructor for use by subclasses. */
        public StandardValues() {
          super(ForwardingMap.this);
        }
      }
    
      /**
       * A sensible definition of {@link #containsValue} in terms of the {@code iterator} method of
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

           * NavigableSet. We test StandardKeySet in the superclass, so it's still covered.
           */
          return navigableKeySet();
        }
    
        @Override
        public Collection<V> values() {
          return new StandardValues();
        }
    
        @Override
        public String toString() {
          return standardToString();
        }
    
        @Override
        public Set<Entry<K, V>> entrySet() {
          return new StandardEntrySet() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top