Package com.google.cloud.aiplatform.v1
Interface ListTrialsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTrialsResponse
,ListTrialsResponse.Builder
public interface ListTrialsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Pass this token as the `page_token` field of the request for a subsequent call.com.google.protobuf.ByteString
getNextPageTokenBytes()
Pass this token as the `page_token` field of the request for a subsequent call.Trial
getTrials(int index)
The Trials associated with the Study.int
getTrialsCount()
The Trials associated with the Study.List<Trial>
getTrialsList()
The Trials associated with the Study.TrialOrBuilder
getTrialsOrBuilder(int index)
The Trials associated with the Study.List<? extends TrialOrBuilder>
getTrialsOrBuilderList()
The Trials associated with the Study.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTrialsList
List<Trial> getTrialsList()
The Trials associated with the Study.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrials
Trial getTrials(int index)
The Trials associated with the Study.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrialsCount
int getTrialsCount()
The Trials associated with the Study.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrialsOrBuilderList
List<? extends TrialOrBuilder> getTrialsOrBuilderList()
The Trials associated with the Study.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getTrialsOrBuilder
TrialOrBuilder getTrialsOrBuilder(int index)
The Trials associated with the Study.
repeated .google.cloud.aiplatform.v1.Trial trials = 1;
-
getNextPageToken
String getNextPageToken()
Pass this token as the `page_token` field of the request for a subsequent call. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Pass this token as the `page_token` field of the request for a subsequent call. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-