Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toStringHelper (0.09 sec)

  1. guava/src/com/google/common/math/Stats.java

        if (count() > 0) {
          return MoreObjects.toStringHelper(this)
              .add("count", count)
              .add("mean", mean)
              .add("populationStandardDeviation", populationStandardDeviation())
              .add("min", min)
              .add("max", max)
              .toString();
        } else {
          return MoreObjects.toStringHelper(this).add("count", count).toString();
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

            callback.onFailure(e);
            return;
          }
          callback.onSuccess(value);
        }
    
        @Override
        public String toString() {
          return MoreObjects.toStringHelper(this).addValue(callback).toString();
        }
      }
    
      /**
       * Returns the result of the input {@code Future}, which must have already completed.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

            callback.onFailure(e);
            return;
          }
          callback.onSuccess(value);
        }
    
        @Override
        public String toString() {
          return MoreObjects.toStringHelper(this).addValue(callback).toString();
        }
      }
    
      /**
       * Returns the result of the input {@code Future}, which must have already completed.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.4K bytes
    - Viewed (0)
Back to top