Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for standardToString (0.05 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingCollectionTest.java

          return standardToArray();
        }
    
        @Override
        public <T> T[] toArray(T[] array) {
          return standardToArray(array);
        }
    
        @Override
        public String toString() {
          return standardToString();
        }
      }
    
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        suite.addTestSuite(ForwardingCollectionTest.class);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 4.8K bytes
    - Viewed (1)
  2. guava/src/com/google/common/collect/ForwardingMapEntry.java

       * If you override either of these methods, you may wish to override {@link #equals} to forward to
       * this implementation.
       *
       * @since 7.0
       */
      protected String standardToString() {
        return getKey() + "=" + getValue();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

       * If you override either of these methods, you may wish to override {@link #equals} to forward to
       * this implementation.
       *
       * @since 7.0
       */
      protected String standardToString() {
        return getKey() + "=" + getValue();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ForwardingSortedMapTest.java

          return new StandardKeySet();
        }
    
        @Override
        public Collection<V> values() {
          return new StandardValues();
        }
    
        @Override
        public String toString() {
          return standardToString();
        }
    
        @Override
        public Set<Entry<K, V>> entrySet() {
          return new StandardEntrySet() {
            @Override
            public Iterator<Entry<K, V>> iterator() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * {@link #entrySet}, you may wish to override {@link #toString} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      @Override
      protected String standardToString() {
        return entrySet().toString();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ForwardingMap.java

       * #entrySet}. If you override {@link #entrySet}, you may wish to override {@link #toString} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      protected String standardToString() {
        return Maps.toStringImpl(this);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

        public <T extends @Nullable Object> T[] toArray(T[] array) {
          return standardToArray(array);
        }
    
        @Override
        public String toString() {
          return standardToString();
        }
      }
    
      /**
       * Returns a view of the portion of {@code set} whose elements are contained by {@code range}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
Back to top