Package org.mlflow.api.proto
Interface Service.GetMetricHistory.ResponseOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Service.GetMetricHistory.Response,- Service.GetMetricHistory.Response.Builder
 - Enclosing class:
- Service.GetMetricHistory
 
 public static interface Service.GetMetricHistory.ResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Service.MetricgetMetrics(int index)All logged values for this metric.intgetMetricsCount()All logged values for this metric.java.util.List<Service.Metric>getMetricsList()All logged values for this metric.Service.MetricOrBuildergetMetricsOrBuilder(int index)All logged values for this metric.java.util.List<? extends Service.MetricOrBuilder>getMetricsOrBuilderList()All logged values for this metric.java.lang.StringgetNextPageToken()Token that can be used to issue a query for the next page of metric history values.com.google.protobuf.ByteStringgetNextPageTokenBytes()Token that can be used to issue a query for the next page of metric history values.booleanhasNextPageToken()Token that can be used to issue a query for the next page of metric history values.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
getMetricsListjava.util.List<Service.Metric> getMetricsList() All logged values for this metric. repeated .mlflow.Metric metrics = 1;
 - 
getMetricsService.Metric getMetrics(int index) All logged values for this metric. repeated .mlflow.Metric metrics = 1;
 - 
getMetricsCountint getMetricsCount() All logged values for this metric. repeated .mlflow.Metric metrics = 1;
 - 
getMetricsOrBuilderListjava.util.List<? extends Service.MetricOrBuilder> getMetricsOrBuilderList() All logged values for this metric. repeated .mlflow.Metric metrics = 1;
 - 
getMetricsOrBuilderService.MetricOrBuilder getMetricsOrBuilder(int index) All logged values for this metric. repeated .mlflow.Metric metrics = 1;
 - 
hasNextPageTokenboolean hasNextPageToken() Token that can be used to issue a query for the next page of metric history values. A missing token indicates that no additional metrics are available to fetch. optional string next_page_token = 2;- Returns:
- Whether the nextPageToken field is set.
 
 - 
getNextPageTokenjava.lang.String getNextPageToken() Token that can be used to issue a query for the next page of metric history values. A missing token indicates that no additional metrics are available to fetch. optional string next_page_token = 2;- Returns:
- The nextPageToken.
 
 - 
getNextPageTokenBytescom.google.protobuf.ByteString getNextPageTokenBytes() Token that can be used to issue a query for the next page of metric history values. A missing token indicates that no additional metrics are available to fetch. optional string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
 
 
- 
 
-