Interface Service.MetricAggregationOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Service.AggregationType getAggregationType()
      The type of aggregation to perform.
      double getPercentileValue()
      The percentile value to compute (0-100), required when aggregation_type is PERCENTILE.
      boolean hasAggregationType()
      The type of aggregation to perform.
      boolean hasPercentileValue()
      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 Detail

      • 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.