Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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