Interface SummaryDataPoint.ValueAtQuantileOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getQuantile()
      The quantile of a distribution.
      double getValue()
      The value at the given quantile of a distribution.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getQuantile

        double getQuantile()
         The quantile of a distribution. Must be in the interval
         [0.0, 1.0].
         
        double quantile = 1;
        Returns:
        The quantile.
      • getValue

        double getValue()
         The value at the given quantile of a distribution.
         Quantile values must NOT be negative.
         
        double value = 2;
        Returns:
        The value.