Package io.prometheus.client
Interface Metrics.QuantileOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Metrics.Quantile,Metrics.Quantile.Builder
- Enclosing class:
- Metrics
public static interface Metrics.QuantileOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetQuantile()optional double quantile = 1;doublegetValue()optional double value = 2;booleanhasQuantile()optional double quantile = 1;booleanhasValue()optional double value = 2;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasQuantile
boolean hasQuantile()
optional double quantile = 1;- Returns:
- Whether the quantile field is set.
-
getQuantile
double getQuantile()
optional double quantile = 1;- Returns:
- The quantile.
-
hasValue
boolean hasValue()
optional double value = 2;- Returns:
- Whether the value field is set.
-
getValue
double getValue()
optional double value = 2;- Returns:
- The value.
-
-