- 0.85.0 (latest)
 - 0.83.0
 - 0.82.0
 - 0.81.0
 - 0.80.0
 - 0.79.0
 - 0.77.0
 - 0.75.0
 - 0.74.0
 - 0.71.0
 - 0.70.0
 - 0.69.0
 - 0.67.0
 - 0.66.0
 - 0.65.0
 - 0.64.0
 - 0.63.0
 - 0.62.0
 - 0.61.0
 - 0.60.0
 - 0.59.0
 - 0.58.0
 - 0.56.0
 - 0.55.0
 - 0.54.0
 - 0.53.0
 - 0.52.0
 - 0.51.0
 - 0.50.0
 - 0.49.0
 - 0.48.0
 - 0.47.0
 - 0.46.0
 - 0.44.0
 - 0.43.0
 - 0.42.0
 - 0.41.0
 - 0.40.0
 - 0.39.0
 - 0.38.0
 - 0.37.0
 - 0.36.0
 - 0.35.0
 - 0.34.0
 - 0.31.0
 - 0.30.0
 - 0.29.0
 - 0.28.0
 - 0.27.0
 - 0.26.0
 - 0.25.0
 - 0.24.0
 - 0.23.0
 - 0.22.0
 - 0.21.0
 - 0.20.0
 - 0.19.0
 - 0.18.0
 - 0.16.0
 - 0.15.0
 - 0.14.0
 - 0.13.0
 - 0.12.0
 - 0.11.0
 - 0.10.4
 - 0.8.10
 
public static final class FeatureMap.Builder extends GeneratedMessageV3.Builder<FeatureMap.Builder> implements FeatureMapOrBuilderFeatureMap represents extra features that customers want to include in the recommendation model for catalogs/user events as categorical/numerical features.
 Protobuf type google.cloud.recommendationengine.v1beta1.FeatureMap
Inheritance
Object > AbstractMessageLite.Builder<MessageType,BuilderType> > AbstractMessage.Builder<BuilderType> > GeneratedMessageV3.Builder > FeatureMap.BuilderImplements
FeatureMapOrBuilderStatic Methods
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()| Returns | |
|---|---|
| Type | Description | 
Descriptor | 
        |
Methods
addRepeatedField(Descriptors.FieldDescriptor field, Object value)
public FeatureMap.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)| Parameters | |
|---|---|
| Name | Description | 
field | 
        FieldDescriptor | 
      
value | 
        Object | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
build()
public FeatureMap build()| Returns | |
|---|---|
| Type | Description | 
FeatureMap | 
        |
buildPartial()
public FeatureMap buildPartial()| Returns | |
|---|---|
| Type | Description | 
FeatureMap | 
        |
clear()
public FeatureMap.Builder clear()| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
clearCategoricalFeatures()
public FeatureMap.Builder clearCategoricalFeatures()| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
clearField(Descriptors.FieldDescriptor field)
public FeatureMap.Builder clearField(Descriptors.FieldDescriptor field)| Parameter | |
|---|---|
| Name | Description | 
field | 
        FieldDescriptor | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
clearNumericalFeatures()
public FeatureMap.Builder clearNumericalFeatures()| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
clearOneof(Descriptors.OneofDescriptor oneof)
public FeatureMap.Builder clearOneof(Descriptors.OneofDescriptor oneof)| Parameter | |
|---|---|
| Name | Description | 
oneof | 
        OneofDescriptor | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
clone()
public FeatureMap.Builder clone()| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
containsCategoricalFeatures(String key)
public boolean containsCategoricalFeatures(String key)Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
boolean | 
        |
containsNumericalFeatures(String key)
public boolean containsNumericalFeatures(String key)Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
boolean | 
        |
getCategoricalFeatures() (deprecated)
public Map<String,FeatureMap.StringList> getCategoricalFeatures()Use #getCategoricalFeaturesMap() instead.
| Returns | |
|---|---|
| Type | Description | 
Map<String,StringList> | 
        |
getCategoricalFeaturesCount()
public int getCategoricalFeaturesCount()Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Returns | |
|---|---|
| Type | Description | 
int | 
        |
getCategoricalFeaturesMap()
public Map<String,FeatureMap.StringList> getCategoricalFeaturesMap()Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Returns | |
|---|---|
| Type | Description | 
Map<String,StringList> | 
        |
getCategoricalFeaturesOrDefault(String key, FeatureMap.StringList defaultValue)
public FeatureMap.StringList getCategoricalFeaturesOrDefault(String key, FeatureMap.StringList defaultValue)Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Parameters | |
|---|---|
| Name | Description | 
key | 
        String | 
      
defaultValue | 
        FeatureMap.StringList | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.StringList | 
        |
getCategoricalFeaturesOrThrow(String key)
public FeatureMap.StringList getCategoricalFeaturesOrThrow(String key)Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.StringList | 
        |
getDefaultInstanceForType()
public FeatureMap getDefaultInstanceForType()| Returns | |
|---|---|
| Type | Description | 
FeatureMap | 
        |
getDescriptorForType()
public Descriptors.Descriptor getDescriptorForType()| Returns | |
|---|---|
| Type | Description | 
Descriptor | 
        |
getMutableCategoricalFeatures() (deprecated)
public Map<String,FeatureMap.StringList> getMutableCategoricalFeatures()Use alternate mutation accessors instead.
| Returns | |
|---|---|
| Type | Description | 
Map<String,StringList> | 
        |
getMutableNumericalFeatures() (deprecated)
public Map<String,FeatureMap.FloatList> getMutableNumericalFeatures()Use alternate mutation accessors instead.
| Returns | |
|---|---|
| Type | Description | 
Map<String,FloatList> | 
        |
getNumericalFeatures() (deprecated)
public Map<String,FeatureMap.FloatList> getNumericalFeatures()Use #getNumericalFeaturesMap() instead.
| Returns | |
|---|---|
| Type | Description | 
Map<String,FloatList> | 
        |
getNumericalFeaturesCount()
public int getNumericalFeaturesCount()Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Returns | |
|---|---|
| Type | Description | 
int | 
        |
getNumericalFeaturesMap()
public Map<String,FeatureMap.FloatList> getNumericalFeaturesMap()Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Returns | |
|---|---|
| Type | Description | 
Map<String,FloatList> | 
        |
getNumericalFeaturesOrDefault(String key, FeatureMap.FloatList defaultValue)
public FeatureMap.FloatList getNumericalFeaturesOrDefault(String key, FeatureMap.FloatList defaultValue)Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Parameters | |
|---|---|
| Name | Description | 
key | 
        String | 
      
defaultValue | 
        FeatureMap.FloatList | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.FloatList | 
        |
getNumericalFeaturesOrThrow(String key)
public FeatureMap.FloatList getNumericalFeaturesOrThrow(String key)Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.FloatList | 
        |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()| Returns | |
|---|---|
| Type | Description | 
FieldAccessorTable | 
        |
internalGetMapFieldReflection(int number)
protected MapFieldReflectionAccessor internalGetMapFieldReflection(int number)| Parameter | |
|---|---|
| Name | Description | 
number | 
        int | 
      
| Returns | |
|---|---|
| Type | Description | 
com.google.protobuf.MapFieldReflectionAccessor | 
        |
internalGetMutableMapFieldReflection(int number)
protected MapFieldReflectionAccessor internalGetMutableMapFieldReflection(int number)| Parameter | |
|---|---|
| Name | Description | 
number | 
        int | 
      
| Returns | |
|---|---|
| Type | Description | 
com.google.protobuf.MapFieldReflectionAccessor | 
        |
isInitialized()
public final boolean isInitialized()| Returns | |
|---|---|
| Type | Description | 
boolean | 
        |
mergeFrom(FeatureMap other)
public FeatureMap.Builder mergeFrom(FeatureMap other)| Parameter | |
|---|---|
| Name | Description | 
other | 
        FeatureMap | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public FeatureMap.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)| Parameters | |
|---|---|
| Name | Description | 
input | 
        CodedInputStream | 
      
extensionRegistry | 
        ExtensionRegistryLite | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
| Exceptions | |
|---|---|
| Type | Description | 
IOException | 
        |
mergeFrom(Message other)
public FeatureMap.Builder mergeFrom(Message other)| Parameter | |
|---|---|
| Name | Description | 
other | 
        Message | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
mergeUnknownFields(UnknownFieldSet unknownFields)
public final FeatureMap.Builder mergeUnknownFields(UnknownFieldSet unknownFields)| Parameter | |
|---|---|
| Name | Description | 
unknownFields | 
        UnknownFieldSet | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
putAllCategoricalFeatures(Map<String,FeatureMap.StringList> values)
public FeatureMap.Builder putAllCategoricalFeatures(Map<String,FeatureMap.StringList> values)Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Parameter | |
|---|---|
| Name | Description | 
values | 
        Map<String,StringList> | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
putAllNumericalFeatures(Map<String,FeatureMap.FloatList> values)
public FeatureMap.Builder putAllNumericalFeatures(Map<String,FeatureMap.FloatList> values)Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Parameter | |
|---|---|
| Name | Description | 
values | 
        Map<String,FloatList> | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
putCategoricalFeatures(String key, FeatureMap.StringList value)
public FeatureMap.Builder putCategoricalFeatures(String key, FeatureMap.StringList value)Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Parameters | |
|---|---|
| Name | Description | 
key | 
        String | 
      
value | 
        FeatureMap.StringList | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
putCategoricalFeaturesBuilderIfAbsent(String key)
public FeatureMap.StringList.Builder putCategoricalFeaturesBuilderIfAbsent(String key)Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.StringList.Builder | 
        |
putNumericalFeatures(String key, FeatureMap.FloatList value)
public FeatureMap.Builder putNumericalFeatures(String key, FeatureMap.FloatList value)Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Parameters | |
|---|---|
| Name | Description | 
key | 
        String | 
      
value | 
        FeatureMap.FloatList | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
putNumericalFeaturesBuilderIfAbsent(String key)
public FeatureMap.FloatList.Builder putNumericalFeaturesBuilderIfAbsent(String key)Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.FloatList.Builder | 
        |
removeCategoricalFeatures(String key)
public FeatureMap.Builder removeCategoricalFeatures(String key)Categorical features that can take on one of a limited number of possible values. Some examples would be the brand/maker of a product, or country of a customer.
Feature names and values must be UTF-8 encoded strings.
 For example: { "colors": {"value": ["yellow", "green"]},
                 "sizes": {"value":["S", "M"]}
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.StringList> categorical_features = 1;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
removeNumericalFeatures(String key)
public FeatureMap.Builder removeNumericalFeatures(String key)Numerical features. Some examples would be the height/weight of a product, or age of a customer.
Feature names must be UTF-8 encoded strings.
 For example: { "lengths_cm": {"value":[2.3, 15.4]},
                 "heights_cm": {"value":[8.1, 6.4]} }
 
 map<string, .google.cloud.recommendationengine.v1beta1.FeatureMap.FloatList> numerical_features = 2;
 
| Parameter | |
|---|---|
| Name | Description | 
key | 
        String | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
setField(Descriptors.FieldDescriptor field, Object value)
public FeatureMap.Builder setField(Descriptors.FieldDescriptor field, Object value)| Parameters | |
|---|---|
| Name | Description | 
field | 
        FieldDescriptor | 
      
value | 
        Object | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
public FeatureMap.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)| Parameters | |
|---|---|
| Name | Description | 
field | 
        FieldDescriptor | 
      
index | 
        int | 
      
value | 
        Object | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |
setUnknownFields(UnknownFieldSet unknownFields)
public final FeatureMap.Builder setUnknownFields(UnknownFieldSet unknownFields)| Parameter | |
|---|---|
| Name | Description | 
unknownFields | 
        UnknownFieldSet | 
      
| Returns | |
|---|---|
| Type | Description | 
FeatureMap.Builder | 
        |