Interface SearchFeaturesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchFeaturesResponse
,SearchFeaturesResponse.Builder
public interface SearchFeaturesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Feature
getFeatures(int index)
The Features matching the request.int
getFeaturesCount()
The Features matching the request.List<Feature>
getFeaturesList()
The Features matching the request.FeatureOrBuilder
getFeaturesOrBuilder(int index)
The Features matching the request.List<? extends FeatureOrBuilder>
getFeaturesOrBuilderList()
The Features matching the request.String
getNextPageToken()
A token, which can be sent as [SearchFeaturesRequest.page_token][google.cloud.aiplatform.v1beta1.SearchFeaturesRequest.page_token] to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token, which can be sent as [SearchFeaturesRequest.page_token][google.cloud.aiplatform.v1beta1.SearchFeaturesRequest.page_token] to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFeaturesList
List<Feature> getFeaturesList()
The Features matching the request. Fields returned: * `name` * `description` * `labels` * `create_time` * `update_time`
repeated .google.cloud.aiplatform.v1beta1.Feature features = 1;
-
getFeatures
Feature getFeatures(int index)
The Features matching the request. Fields returned: * `name` * `description` * `labels` * `create_time` * `update_time`
repeated .google.cloud.aiplatform.v1beta1.Feature features = 1;
-
getFeaturesCount
int getFeaturesCount()
The Features matching the request. Fields returned: * `name` * `description` * `labels` * `create_time` * `update_time`
repeated .google.cloud.aiplatform.v1beta1.Feature features = 1;
-
getFeaturesOrBuilderList
List<? extends FeatureOrBuilder> getFeaturesOrBuilderList()
The Features matching the request. Fields returned: * `name` * `description` * `labels` * `create_time` * `update_time`
repeated .google.cloud.aiplatform.v1beta1.Feature features = 1;
-
getFeaturesOrBuilder
FeatureOrBuilder getFeaturesOrBuilder(int index)
The Features matching the request. Fields returned: * `name` * `description` * `labels` * `create_time` * `update_time`
repeated .google.cloud.aiplatform.v1beta1.Feature features = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as [SearchFeaturesRequest.page_token][google.cloud.aiplatform.v1beta1.SearchFeaturesRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as [SearchFeaturesRequest.page_token][google.cloud.aiplatform.v1beta1.SearchFeaturesRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-