Interface ListStudiesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListStudiesResponse,ListStudiesResponse.Builder
public interface ListStudiesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Passes this token as the `page_token` field of the request for a subsequent call.com.google.protobuf.ByteStringgetNextPageTokenBytes()Passes this token as the `page_token` field of the request for a subsequent call.StudygetStudies(int index)The studies associated with the project.intgetStudiesCount()The studies associated with the project.List<Study>getStudiesList()The studies associated with the project.StudyOrBuildergetStudiesOrBuilder(int index)The studies associated with the project.List<? extends StudyOrBuilder>getStudiesOrBuilderList()The studies associated with the project.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStudiesList
List<Study> getStudiesList()
The studies associated with the project.
repeated .google.cloud.aiplatform.v1beta1.Study studies = 1;
-
getStudies
Study getStudies(int index)
The studies associated with the project.
repeated .google.cloud.aiplatform.v1beta1.Study studies = 1;
-
getStudiesCount
int getStudiesCount()
The studies associated with the project.
repeated .google.cloud.aiplatform.v1beta1.Study studies = 1;
-
getStudiesOrBuilderList
List<? extends StudyOrBuilder> getStudiesOrBuilderList()
The studies associated with the project.
repeated .google.cloud.aiplatform.v1beta1.Study studies = 1;
-
getStudiesOrBuilder
StudyOrBuilder getStudiesOrBuilder(int index)
The studies associated with the project.
repeated .google.cloud.aiplatform.v1beta1.Study studies = 1;
-
getNextPageToken
String getNextPageToken()
Passes 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()
Passes 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.
-
-