Package com.google.cloud.aiplatform.v1
Interface FeatureValueListOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FeatureValueList
,FeatureValueList.Builder
public interface FeatureValueListOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FeatureValue
getValues(int index)
A list of feature values.int
getValuesCount()
A list of feature values.List<FeatureValue>
getValuesList()
A list of feature values.FeatureValueOrBuilder
getValuesOrBuilder(int index)
A list of feature values.List<? extends FeatureValueOrBuilder>
getValuesOrBuilderList()
A list of feature values.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesList
List<FeatureValue> getValuesList()
A list of feature values. All of them should be the same data type.
repeated .google.cloud.aiplatform.v1.FeatureValue values = 1;
-
getValues
FeatureValue getValues(int index)
A list of feature values. All of them should be the same data type.
repeated .google.cloud.aiplatform.v1.FeatureValue values = 1;
-
getValuesCount
int getValuesCount()
A list of feature values. All of them should be the same data type.
repeated .google.cloud.aiplatform.v1.FeatureValue values = 1;
-
getValuesOrBuilderList
List<? extends FeatureValueOrBuilder> getValuesOrBuilderList()
A list of feature values. All of them should be the same data type.
repeated .google.cloud.aiplatform.v1.FeatureValue values = 1;
-
getValuesOrBuilder
FeatureValueOrBuilder getValuesOrBuilder(int index)
A list of feature values. All of them should be the same data type.
repeated .google.cloud.aiplatform.v1.FeatureValue values = 1;
-
-