Interface SummaryDataPoint.ValueAtQuantileOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SummaryDataPoint.ValueAtQuantile,SummaryDataPoint.ValueAtQuantile.Builder
- Enclosing class:
- SummaryDataPoint
public static interface SummaryDataPoint.ValueAtQuantileOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiondoubleThe quantile of a distribution.doublegetValue()The value at the given quantile of a distribution.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
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.
-