Package org.mlflow.api.proto
Interface Service.SearchExperiments.ResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.SearchExperiments.Response
,Service.SearchExperiments.Response.Builder
- Enclosing class:
- Service.SearchExperiments
public static interface Service.SearchExperiments.ResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Service.Experiment
getExperiments(int index)
Experiments that match the search criteriaint
getExperimentsCount()
Experiments that match the search criteriajava.util.List<Service.Experiment>
getExperimentsList()
Experiments that match the search criteriaService.ExperimentOrBuilder
getExperimentsOrBuilder(int index)
Experiments that match the search criteriajava.util.List<? extends Service.ExperimentOrBuilder>
getExperimentsOrBuilderList()
Experiments that match the search criteriajava.lang.String
getNextPageToken()
Token that can be used to retrieve the next page of experiments.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token that can be used to retrieve the next page of experiments.boolean
hasNextPageToken()
Token that can be used to retrieve the next page of experiments.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExperimentsList
java.util.List<Service.Experiment> getExperimentsList()
Experiments that match the search criteria
repeated .mlflow.Experiment experiments = 1;
-
getExperiments
Service.Experiment getExperiments(int index)
Experiments that match the search criteria
repeated .mlflow.Experiment experiments = 1;
-
getExperimentsCount
int getExperimentsCount()
Experiments that match the search criteria
repeated .mlflow.Experiment experiments = 1;
-
getExperimentsOrBuilderList
java.util.List<? extends Service.ExperimentOrBuilder> getExperimentsOrBuilderList()
Experiments that match the search criteria
repeated .mlflow.Experiment experiments = 1;
-
getExperimentsOrBuilder
Service.ExperimentOrBuilder getExperimentsOrBuilder(int index)
Experiments that match the search criteria
repeated .mlflow.Experiment experiments = 1;
-
hasNextPageToken
boolean hasNextPageToken()
Token that can be used to retrieve the next page of experiments. An empty token means that no more experiments are available for retrieval.
optional string next_page_token = 2;
- Returns:
- Whether the nextPageToken field is set.
-
getNextPageToken
java.lang.String getNextPageToken()
Token that can be used to retrieve the next page of experiments. An empty token means that no more experiments are available for retrieval.
optional string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token that can be used to retrieve the next page of experiments. An empty token means that no more experiments are available for retrieval.
optional string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-