Interface ReadFeatureValuesResponse.EntityViewOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadFeatureValuesResponse.EntityView
,ReadFeatureValuesResponse.EntityView.Builder
- Enclosing class:
- ReadFeatureValuesResponse
public static interface ReadFeatureValuesResponse.EntityViewOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadFeatureValuesResponse.EntityView.Data
getData(int index)
Each piece of data holds the k requested values for one requested Feature.int
getDataCount()
Each piece of data holds the k requested values for one requested Feature.List<ReadFeatureValuesResponse.EntityView.Data>
getDataList()
Each piece of data holds the k requested values for one requested Feature.ReadFeatureValuesResponse.EntityView.DataOrBuilder
getDataOrBuilder(int index)
Each piece of data holds the k requested values for one requested Feature.List<? extends ReadFeatureValuesResponse.EntityView.DataOrBuilder>
getDataOrBuilderList()
Each piece of data holds the k requested values for one requested Feature.String
getEntityId()
ID of the requested entity.com.google.protobuf.ByteString
getEntityIdBytes()
ID of the requested entity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntityId
String getEntityId()
ID of the requested entity.
string entity_id = 1;
- Returns:
- The entityId.
-
getEntityIdBytes
com.google.protobuf.ByteString getEntityIdBytes()
ID of the requested entity.
string entity_id = 1;
- Returns:
- The bytes for entityId.
-
getDataList
List<ReadFeatureValuesResponse.EntityView.Data> getDataList()
Each piece of data holds the k requested values for one requested Feature. If no values for the requested Feature exist, the corresponding cell will be empty. This has the same size and is in the same order as the features from the header [ReadFeatureValuesResponse.header][google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.header].
repeated .google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.EntityView.Data data = 2;
-
getData
ReadFeatureValuesResponse.EntityView.Data getData(int index)
Each piece of data holds the k requested values for one requested Feature. If no values for the requested Feature exist, the corresponding cell will be empty. This has the same size and is in the same order as the features from the header [ReadFeatureValuesResponse.header][google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.header].
repeated .google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.EntityView.Data data = 2;
-
getDataCount
int getDataCount()
Each piece of data holds the k requested values for one requested Feature. If no values for the requested Feature exist, the corresponding cell will be empty. This has the same size and is in the same order as the features from the header [ReadFeatureValuesResponse.header][google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.header].
repeated .google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.EntityView.Data data = 2;
-
getDataOrBuilderList
List<? extends ReadFeatureValuesResponse.EntityView.DataOrBuilder> getDataOrBuilderList()
Each piece of data holds the k requested values for one requested Feature. If no values for the requested Feature exist, the corresponding cell will be empty. This has the same size and is in the same order as the features from the header [ReadFeatureValuesResponse.header][google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.header].
repeated .google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.EntityView.Data data = 2;
-
getDataOrBuilder
ReadFeatureValuesResponse.EntityView.DataOrBuilder getDataOrBuilder(int index)
Each piece of data holds the k requested values for one requested Feature. If no values for the requested Feature exist, the corresponding cell will be empty. This has the same size and is in the same order as the features from the header [ReadFeatureValuesResponse.header][google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.header].
repeated .google.cloud.aiplatform.v1beta1.ReadFeatureValuesResponse.EntityView.Data data = 2;
-
-