Interface Service.MetricAggregationOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Service.MetricAggregation, Service.MetricAggregation.Builder
Enclosing class:
Service

public static interface Service.MetricAggregationOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    The type of aggregation to perform.
    double
    The percentile value to compute (0-100), required when aggregation_type is PERCENTILE.
    boolean
    The type of aggregation to perform.
    boolean
    The percentile value to compute (0-100), required when aggregation_type is PERCENTILE.

    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 Details

    • hasAggregationType

      boolean hasAggregationType()
       The type of aggregation to perform.
       
      optional .mlflow.AggregationType aggregation_type = 1;
      Returns:
      Whether the aggregationType field is set.
    • getAggregationType

      Service.AggregationType getAggregationType()
       The type of aggregation to perform.
       
      optional .mlflow.AggregationType aggregation_type = 1;
      Returns:
      The aggregationType.
    • hasPercentileValue

      boolean hasPercentileValue()
       The percentile value to compute (0-100), required when aggregation_type is PERCENTILE.
       Examples: 50 (median), 75, 90, 95, 99.
       This field is ignored for other aggregation types.
       
      optional double percentile_value = 2;
      Returns:
      Whether the percentileValue field is set.
    • getPercentileValue

      double getPercentileValue()
       The percentile value to compute (0-100), required when aggregation_type is PERCENTILE.
       Examples: 50 (median), 75, 90, 95, 99.
       This field is ignored for other aggregation types.
       
      optional double percentile_value = 2;
      Returns:
      The percentileValue.