com.google.cloud.retail.v2alpha.CatalogAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-retail-v2alpha Show documentation
Show all versions of proto-google-cloud-retail-v2alpha Show documentation
Proto library for google-cloud-retail
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/retail/v2alpha/catalog.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.retail.v2alpha;
/**
*
*
*
* Catalog level attribute config for an attribute. For example, if customers
* want to enable/disable facet for a specific attribute.
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute}
*/
public final class CatalogAttribute extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.retail.v2alpha.CatalogAttribute)
CatalogAttributeOrBuilder {
private static final long serialVersionUID = 0L;
// Use CatalogAttribute.newBuilder() to construct.
private CatalogAttribute(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private CatalogAttribute() {
key_ = "";
type_ = 0;
indexableOption_ = 0;
dynamicFacetableOption_ = 0;
searchableOption_ = 0;
recommendationsFilteringOption_ = 0;
exactSearchableOption_ = 0;
retrievableOption_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new CatalogAttribute();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.Builder.class);
}
/**
*
*
*
* The type of an attribute.
*
*
* Protobuf enum {@code google.cloud.retail.v2alpha.CatalogAttribute.AttributeType}
*/
public enum AttributeType implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* The type of the attribute is unknown.
*
* Used when type cannot be derived from attribute that is not
* [in_use][google.cloud.retail.v2alpha.CatalogAttribute.in_use].
*
*
* UNKNOWN = 0;
*/
UNKNOWN(0),
/**
*
*
*
* Textual attribute.
*
*
* TEXTUAL = 1;
*/
TEXTUAL(1),
/**
*
*
*
* Numerical attribute.
*
*
* NUMERICAL = 2;
*/
NUMERICAL(2),
UNRECOGNIZED(-1),
;
/**
*
*
*
* The type of the attribute is unknown.
*
* Used when type cannot be derived from attribute that is not
* [in_use][google.cloud.retail.v2alpha.CatalogAttribute.in_use].
*
*
* UNKNOWN = 0;
*/
public static final int UNKNOWN_VALUE = 0;
/**
*
*
*
* Textual attribute.
*
*
* TEXTUAL = 1;
*/
public static final int TEXTUAL_VALUE = 1;
/**
*
*
*
* Numerical attribute.
*
*
* NUMERICAL = 2;
*/
public static final int NUMERICAL_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static AttributeType valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static AttributeType forNumber(int value) {
switch (value) {
case 0:
return UNKNOWN;
case 1:
return TEXTUAL;
case 2:
return NUMERICAL;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public AttributeType findValueByNumber(int number) {
return AttributeType.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.getDescriptor().getEnumTypes().get(0);
}
private static final AttributeType[] VALUES = values();
public static AttributeType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private AttributeType(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.retail.v2alpha.CatalogAttribute.AttributeType)
}
/**
*
*
*
* The status of the indexable option of a catalog attribute.
*
*
* Protobuf enum {@code google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption}
*/
public enum IndexableOption implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* Value used when unset.
*
*
* INDEXABLE_OPTION_UNSPECIFIED = 0;
*/
INDEXABLE_OPTION_UNSPECIFIED(0),
/**
*
*
*
* Indexable option enabled for an attribute.
*
*
* INDEXABLE_ENABLED = 1;
*/
INDEXABLE_ENABLED(1),
/**
*
*
*
* Indexable option disabled for an attribute.
*
*
* INDEXABLE_DISABLED = 2;
*/
INDEXABLE_DISABLED(2),
UNRECOGNIZED(-1),
;
/**
*
*
*
* Value used when unset.
*
*
* INDEXABLE_OPTION_UNSPECIFIED = 0;
*/
public static final int INDEXABLE_OPTION_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* Indexable option enabled for an attribute.
*
*
* INDEXABLE_ENABLED = 1;
*/
public static final int INDEXABLE_ENABLED_VALUE = 1;
/**
*
*
*
* Indexable option disabled for an attribute.
*
*
* INDEXABLE_DISABLED = 2;
*/
public static final int INDEXABLE_DISABLED_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static IndexableOption valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static IndexableOption forNumber(int value) {
switch (value) {
case 0:
return INDEXABLE_OPTION_UNSPECIFIED;
case 1:
return INDEXABLE_ENABLED;
case 2:
return INDEXABLE_DISABLED;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public IndexableOption findValueByNumber(int number) {
return IndexableOption.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.getDescriptor().getEnumTypes().get(1);
}
private static final IndexableOption[] VALUES = values();
public static IndexableOption valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private IndexableOption(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption)
}
/**
*
*
*
* The status of the dynamic facetable option of a catalog attribute.
*
*
* Protobuf enum {@code google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption}
*/
public enum DynamicFacetableOption implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* Value used when unset.
*
*
* DYNAMIC_FACETABLE_OPTION_UNSPECIFIED = 0;
*/
DYNAMIC_FACETABLE_OPTION_UNSPECIFIED(0),
/**
*
*
*
* Dynamic facetable option enabled for an attribute.
*
*
* DYNAMIC_FACETABLE_ENABLED = 1;
*/
DYNAMIC_FACETABLE_ENABLED(1),
/**
*
*
*
* Dynamic facetable option disabled for an attribute.
*
*
* DYNAMIC_FACETABLE_DISABLED = 2;
*/
DYNAMIC_FACETABLE_DISABLED(2),
UNRECOGNIZED(-1),
;
/**
*
*
*
* Value used when unset.
*
*
* DYNAMIC_FACETABLE_OPTION_UNSPECIFIED = 0;
*/
public static final int DYNAMIC_FACETABLE_OPTION_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* Dynamic facetable option enabled for an attribute.
*
*
* DYNAMIC_FACETABLE_ENABLED = 1;
*/
public static final int DYNAMIC_FACETABLE_ENABLED_VALUE = 1;
/**
*
*
*
* Dynamic facetable option disabled for an attribute.
*
*
* DYNAMIC_FACETABLE_DISABLED = 2;
*/
public static final int DYNAMIC_FACETABLE_DISABLED_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static DynamicFacetableOption valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static DynamicFacetableOption forNumber(int value) {
switch (value) {
case 0:
return DYNAMIC_FACETABLE_OPTION_UNSPECIFIED;
case 1:
return DYNAMIC_FACETABLE_ENABLED;
case 2:
return DYNAMIC_FACETABLE_DISABLED;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public DynamicFacetableOption findValueByNumber(int number) {
return DynamicFacetableOption.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.getDescriptor().getEnumTypes().get(2);
}
private static final DynamicFacetableOption[] VALUES = values();
public static DynamicFacetableOption valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private DynamicFacetableOption(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption)
}
/**
*
*
*
* The status of the searchable option of a catalog attribute.
*
*
* Protobuf enum {@code google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption}
*/
public enum SearchableOption implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* Value used when unset.
*
*
* SEARCHABLE_OPTION_UNSPECIFIED = 0;
*/
SEARCHABLE_OPTION_UNSPECIFIED(0),
/**
*
*
*
* Searchable option enabled for an attribute.
*
*
* SEARCHABLE_ENABLED = 1;
*/
SEARCHABLE_ENABLED(1),
/**
*
*
*
* Searchable option disabled for an attribute.
*
*
* SEARCHABLE_DISABLED = 2;
*/
SEARCHABLE_DISABLED(2),
UNRECOGNIZED(-1),
;
/**
*
*
*
* Value used when unset.
*
*
* SEARCHABLE_OPTION_UNSPECIFIED = 0;
*/
public static final int SEARCHABLE_OPTION_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* Searchable option enabled for an attribute.
*
*
* SEARCHABLE_ENABLED = 1;
*/
public static final int SEARCHABLE_ENABLED_VALUE = 1;
/**
*
*
*
* Searchable option disabled for an attribute.
*
*
* SEARCHABLE_DISABLED = 2;
*/
public static final int SEARCHABLE_DISABLED_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static SearchableOption valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static SearchableOption forNumber(int value) {
switch (value) {
case 0:
return SEARCHABLE_OPTION_UNSPECIFIED;
case 1:
return SEARCHABLE_ENABLED;
case 2:
return SEARCHABLE_DISABLED;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public SearchableOption findValueByNumber(int number) {
return SearchableOption.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.getDescriptor().getEnumTypes().get(3);
}
private static final SearchableOption[] VALUES = values();
public static SearchableOption valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private SearchableOption(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption)
}
/**
*
*
*
* The status of the exact-searchable option of a catalog attribute.
*
*
* Protobuf enum {@code google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption}
*/
public enum ExactSearchableOption implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* Value used when unset.
*
*
* EXACT_SEARCHABLE_OPTION_UNSPECIFIED = 0;
*/
EXACT_SEARCHABLE_OPTION_UNSPECIFIED(0),
/**
*
*
*
* Exact searchable option enabled for an attribute.
*
*
* EXACT_SEARCHABLE_ENABLED = 1;
*/
EXACT_SEARCHABLE_ENABLED(1),
/**
*
*
*
* Exact searchable option disabled for an attribute.
*
*
* EXACT_SEARCHABLE_DISABLED = 2;
*/
EXACT_SEARCHABLE_DISABLED(2),
UNRECOGNIZED(-1),
;
/**
*
*
*
* Value used when unset.
*
*
* EXACT_SEARCHABLE_OPTION_UNSPECIFIED = 0;
*/
public static final int EXACT_SEARCHABLE_OPTION_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* Exact searchable option enabled for an attribute.
*
*
* EXACT_SEARCHABLE_ENABLED = 1;
*/
public static final int EXACT_SEARCHABLE_ENABLED_VALUE = 1;
/**
*
*
*
* Exact searchable option disabled for an attribute.
*
*
* EXACT_SEARCHABLE_DISABLED = 2;
*/
public static final int EXACT_SEARCHABLE_DISABLED_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static ExactSearchableOption valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static ExactSearchableOption forNumber(int value) {
switch (value) {
case 0:
return EXACT_SEARCHABLE_OPTION_UNSPECIFIED;
case 1:
return EXACT_SEARCHABLE_ENABLED;
case 2:
return EXACT_SEARCHABLE_DISABLED;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public ExactSearchableOption findValueByNumber(int number) {
return ExactSearchableOption.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.getDescriptor().getEnumTypes().get(4);
}
private static final ExactSearchableOption[] VALUES = values();
public static ExactSearchableOption valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private ExactSearchableOption(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption)
}
/**
*
*
*
* The status of the retrievable option of a catalog attribute.
*
*
* Protobuf enum {@code google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption}
*/
public enum RetrievableOption implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* Value used when unset.
*
*
* RETRIEVABLE_OPTION_UNSPECIFIED = 0;
*/
RETRIEVABLE_OPTION_UNSPECIFIED(0),
/**
*
*
*
* Retrievable option enabled for an attribute.
*
*
* RETRIEVABLE_ENABLED = 1;
*/
RETRIEVABLE_ENABLED(1),
/**
*
*
*
* Retrievable option disabled for an attribute.
*
*
* RETRIEVABLE_DISABLED = 2;
*/
RETRIEVABLE_DISABLED(2),
UNRECOGNIZED(-1),
;
/**
*
*
*
* Value used when unset.
*
*
* RETRIEVABLE_OPTION_UNSPECIFIED = 0;
*/
public static final int RETRIEVABLE_OPTION_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* Retrievable option enabled for an attribute.
*
*
* RETRIEVABLE_ENABLED = 1;
*/
public static final int RETRIEVABLE_ENABLED_VALUE = 1;
/**
*
*
*
* Retrievable option disabled for an attribute.
*
*
* RETRIEVABLE_DISABLED = 2;
*/
public static final int RETRIEVABLE_DISABLED_VALUE = 2;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static RetrievableOption valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static RetrievableOption forNumber(int value) {
switch (value) {
case 0:
return RETRIEVABLE_OPTION_UNSPECIFIED;
case 1:
return RETRIEVABLE_ENABLED;
case 2:
return RETRIEVABLE_DISABLED;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public RetrievableOption findValueByNumber(int number) {
return RetrievableOption.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.getDescriptor().getEnumTypes().get(5);
}
private static final RetrievableOption[] VALUES = values();
public static RetrievableOption valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private RetrievableOption(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption)
}
public interface FacetConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
java.util.List getFacetIntervalsList();
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
com.google.cloud.retail.v2alpha.Interval getFacetIntervals(int index);
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
int getFacetIntervalsCount();
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
java.util.List extends com.google.cloud.retail.v2alpha.IntervalOrBuilder>
getFacetIntervalsOrBuilderList();
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
com.google.cloud.retail.v2alpha.IntervalOrBuilder getFacetIntervalsOrBuilder(int index);
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
java.util.List
getIgnoredFacetValuesList();
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
getIgnoredFacetValues(int index);
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
int getIgnoredFacetValuesCount();
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
java.util.List<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValuesOrBuilder>
getIgnoredFacetValuesOrBuilderList();
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValuesOrBuilder
getIgnoredFacetValuesOrBuilder(int index);
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
java.util.List
getMergedFacetValuesList();
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
getMergedFacetValues(int index);
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
int getMergedFacetValuesCount();
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
java.util.List<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValueOrBuilder>
getMergedFacetValuesOrBuilderList();
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValueOrBuilder
getMergedFacetValuesOrBuilder(int index);
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*
* @return Whether the mergedFacet field is set.
*/
boolean hasMergedFacet();
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*
* @return The mergedFacet.
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet getMergedFacet();
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetOrBuilder
getMergedFacetOrBuilder();
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*
* @return Whether the rerankConfig field is set.
*/
boolean hasRerankConfig();
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*
* @return The rerankConfig.
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig getRerankConfig();
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfigOrBuilder
getRerankConfigOrBuilder();
}
/**
*
*
*
* Possible options for the facet that corresponds to the current attribute
* config.
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig}
*/
public static final class FacetConfig extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig)
FacetConfigOrBuilder {
private static final long serialVersionUID = 0L;
// Use FacetConfig.newBuilder() to construct.
private FacetConfig(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private FacetConfig() {
facetIntervals_ = java.util.Collections.emptyList();
ignoredFacetValues_ = java.util.Collections.emptyList();
mergedFacetValues_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new FacetConfig();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.Builder.class);
}
public interface IgnoredFacetValuesOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @return A list containing the values.
*/
java.util.List getValuesList();
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @return The count of values.
*/
int getValuesCount();
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the element to return.
* @return The values at the given index.
*/
java.lang.String getValues(int index);
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the value to return.
* @return The bytes of the values at the given index.
*/
com.google.protobuf.ByteString getValuesBytes(int index);
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*
* @return Whether the startTime field is set.
*/
boolean hasStartTime();
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*
* @return The startTime.
*/
com.google.protobuf.Timestamp getStartTime();
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder();
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*
* @return Whether the endTime field is set.
*/
boolean hasEndTime();
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*
* @return The endTime.
*/
com.google.protobuf.Timestamp getEndTime();
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder();
}
/**
*
*
*
* [Facet values][google.cloud.retail.v2alpha.SearchResponse.Facet.values]
* to ignore on [facets][google.cloud.retail.v2alpha.SearchResponse.Facet]
* during the specified time range for the given
* [SearchResponse.Facet.key][google.cloud.retail.v2alpha.SearchResponse.Facet.key]
* attribute.
*
*
* Protobuf type {@code
* google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues}
*/
public static final class IgnoredFacetValues extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues)
IgnoredFacetValuesOrBuilder {
private static final long serialVersionUID = 0L;
// Use IgnoredFacetValues.newBuilder() to construct.
private IgnoredFacetValues(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private IgnoredFacetValues() {
values_ = com.google.protobuf.LazyStringArrayList.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new IgnoredFacetValues();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_IgnoredFacetValues_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_IgnoredFacetValues_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.Builder.class);
}
private int bitField0_;
public static final int VALUES_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList values_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @return A list containing the values.
*/
public com.google.protobuf.ProtocolStringList getValuesList() {
return values_;
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @return The count of values.
*/
public int getValuesCount() {
return values_.size();
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the element to return.
* @return The values at the given index.
*/
public java.lang.String getValues(int index) {
return values_.get(index);
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the value to return.
* @return The bytes of the values at the given index.
*/
public com.google.protobuf.ByteString getValuesBytes(int index) {
return values_.getByteString(index);
}
public static final int START_TIME_FIELD_NUMBER = 2;
private com.google.protobuf.Timestamp startTime_;
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*
* @return Whether the startTime field is set.
*/
@java.lang.Override
public boolean hasStartTime() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*
* @return The startTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getStartTime() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
public static final int END_TIME_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp endTime_;
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*
* @return Whether the endTime field is set.
*/
@java.lang.Override
public boolean hasEndTime() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*
* @return The endTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getEndTime() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
for (int i = 0; i < values_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, values_.getRaw(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getStartTime());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(3, getEndTime());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < values_.size(); i++) {
dataSize += computeStringSizeNoTag(values_.getRaw(i));
}
size += dataSize;
size += 1 * getValuesList().size();
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getStartTime());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getEndTime());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj
instanceof
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues)) {
return super.equals(obj);
}
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues other =
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues) obj;
if (!getValuesList().equals(other.getValuesList())) return false;
if (hasStartTime() != other.hasStartTime()) return false;
if (hasStartTime()) {
if (!getStartTime().equals(other.getStartTime())) return false;
}
if (hasEndTime() != other.hasEndTime()) return false;
if (hasEndTime()) {
if (!getEndTime().equals(other.getEndTime())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getValuesCount() > 0) {
hash = (37 * hash) + VALUES_FIELD_NUMBER;
hash = (53 * hash) + getValuesList().hashCode();
}
if (hasStartTime()) {
hash = (37 * hash) + START_TIME_FIELD_NUMBER;
hash = (53 * hash) + getStartTime().hashCode();
}
if (hasEndTime()) {
hash = (37 * hash) + END_TIME_FIELD_NUMBER;
hash = (53 * hash) + getEndTime().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* [Facet values][google.cloud.retail.v2alpha.SearchResponse.Facet.values]
* to ignore on [facets][google.cloud.retail.v2alpha.SearchResponse.Facet]
* during the specified time range for the given
* [SearchResponse.Facet.key][google.cloud.retail.v2alpha.SearchResponse.Facet.key]
* attribute.
*
*
* Protobuf type {@code
* google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues)
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValuesOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_IgnoredFacetValues_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_IgnoredFacetValues_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.Builder.class);
}
// Construct using
// com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getStartTimeFieldBuilder();
getEndTimeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
values_ = com.google.protobuf.LazyStringArrayList.emptyList();
startTime_ = null;
if (startTimeBuilder_ != null) {
startTimeBuilder_.dispose();
startTimeBuilder_ = null;
}
endTime_ = null;
if (endTimeBuilder_ != null) {
endTimeBuilder_.dispose();
endTimeBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_IgnoredFacetValues_descriptor;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
getDefaultInstanceForType() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
build() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
buildPartial() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues result =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues(
this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
values_.makeImmutable();
result.values_ = values_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.startTime_ = startTimeBuilder_ == null ? startTime_ : startTimeBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.endTime_ = endTimeBuilder_ == null ? endTime_ : endTimeBuilder_.build();
to_bitField0_ |= 0x00000002;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other
instanceof
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues) {
return mergeFrom(
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues)
other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues other) {
if (other
== com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.getDefaultInstance()) return this;
if (!other.values_.isEmpty()) {
if (values_.isEmpty()) {
values_ = other.values_;
bitField0_ |= 0x00000001;
} else {
ensureValuesIsMutable();
values_.addAll(other.values_);
}
onChanged();
}
if (other.hasStartTime()) {
mergeStartTime(other.getStartTime());
}
if (other.hasEndTime()) {
mergeEndTime(other.getEndTime());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
java.lang.String s = input.readStringRequireUtf8();
ensureValuesIsMutable();
values_.add(s);
break;
} // case 10
case 18:
{
input.readMessage(getStartTimeFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
input.readMessage(getEndTimeFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.protobuf.LazyStringArrayList values_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureValuesIsMutable() {
if (!values_.isModifiable()) {
values_ = new com.google.protobuf.LazyStringArrayList(values_);
}
bitField0_ |= 0x00000001;
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @return A list containing the values.
*/
public com.google.protobuf.ProtocolStringList getValuesList() {
values_.makeImmutable();
return values_;
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @return The count of values.
*/
public int getValuesCount() {
return values_.size();
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the element to return.
* @return The values at the given index.
*/
public java.lang.String getValues(int index) {
return values_.get(index);
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the value to return.
* @return The bytes of the values at the given index.
*/
public com.google.protobuf.ByteString getValuesBytes(int index) {
return values_.getByteString(index);
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index to set the value at.
* @param value The values to set.
* @return This builder for chaining.
*/
public Builder setValues(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureValuesIsMutable();
values_.set(index, value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param value The values to add.
* @return This builder for chaining.
*/
public Builder addValues(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureValuesIsMutable();
values_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param values The values to add.
* @return This builder for chaining.
*/
public Builder addAllValues(java.lang.Iterable values) {
ensureValuesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, values_);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @return This builder for chaining.
*/
public Builder clearValues() {
values_ = com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
;
onChanged();
return this;
}
/**
*
*
*
* List of facet values to ignore for the following time range. The facet
* values are the same as the attribute values. There is a limit of 10
* values per instance of IgnoredFacetValues. Each value can have at most
* 128 characters.
*
*
* repeated string values = 1;
*
* @param value The bytes of the values to add.
* @return This builder for chaining.
*/
public Builder addValuesBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureValuesIsMutable();
values_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.google.protobuf.Timestamp startTime_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
startTimeBuilder_;
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*
* @return Whether the startTime field is set.
*/
public boolean hasStartTime() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*
* @return The startTime.
*/
public com.google.protobuf.Timestamp getStartTime() {
if (startTimeBuilder_ == null) {
return startTime_ == null
? com.google.protobuf.Timestamp.getDefaultInstance()
: startTime_;
} else {
return startTimeBuilder_.getMessage();
}
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
public Builder setStartTime(com.google.protobuf.Timestamp value) {
if (startTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
startTime_ = value;
} else {
startTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
public Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValue) {
if (startTimeBuilder_ == null) {
startTime_ = builderForValue.build();
} else {
startTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
public Builder mergeStartTime(com.google.protobuf.Timestamp value) {
if (startTimeBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& startTime_ != null
&& startTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
getStartTimeBuilder().mergeFrom(value);
} else {
startTime_ = value;
}
} else {
startTimeBuilder_.mergeFrom(value);
}
if (startTime_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
public Builder clearStartTime() {
bitField0_ = (bitField0_ & ~0x00000002);
startTime_ = null;
if (startTimeBuilder_ != null) {
startTimeBuilder_.dispose();
startTimeBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
public com.google.protobuf.Timestamp.Builder getStartTimeBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getStartTimeFieldBuilder().getBuilder();
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
if (startTimeBuilder_ != null) {
return startTimeBuilder_.getMessageOrBuilder();
} else {
return startTime_ == null
? com.google.protobuf.Timestamp.getDefaultInstance()
: startTime_;
}
}
/**
*
*
*
* Time range for the current list of facet values to ignore.
* If multiple time ranges are specified for an facet value for the
* current attribute, consider all of them. If both are empty, ignore
* always. If start time and end time are set, then start time
* must be before end time.
* If start time is not empty and end time is empty, then will ignore
* these facet values after the start time.
*
*
* .google.protobuf.Timestamp start_time = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
getStartTimeFieldBuilder() {
if (startTimeBuilder_ == null) {
startTimeBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>(
getStartTime(), getParentForChildren(), isClean());
startTime_ = null;
}
return startTimeBuilder_;
}
private com.google.protobuf.Timestamp endTime_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
endTimeBuilder_;
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*
* @return Whether the endTime field is set.
*/
public boolean hasEndTime() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*
* @return The endTime.
*/
public com.google.protobuf.Timestamp getEndTime() {
if (endTimeBuilder_ == null) {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
} else {
return endTimeBuilder_.getMessage();
}
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
public Builder setEndTime(com.google.protobuf.Timestamp value) {
if (endTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
endTime_ = value;
} else {
endTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
public Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue) {
if (endTimeBuilder_ == null) {
endTime_ = builderForValue.build();
} else {
endTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
public Builder mergeEndTime(com.google.protobuf.Timestamp value) {
if (endTimeBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)
&& endTime_ != null
&& endTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
getEndTimeBuilder().mergeFrom(value);
} else {
endTime_ = value;
}
} else {
endTimeBuilder_.mergeFrom(value);
}
if (endTime_ != null) {
bitField0_ |= 0x00000004;
onChanged();
}
return this;
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
public Builder clearEndTime() {
bitField0_ = (bitField0_ & ~0x00000004);
endTime_ = null;
if (endTimeBuilder_ != null) {
endTimeBuilder_.dispose();
endTimeBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
public com.google.protobuf.Timestamp.Builder getEndTimeBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getEndTimeFieldBuilder().getBuilder();
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
if (endTimeBuilder_ != null) {
return endTimeBuilder_.getMessageOrBuilder();
} else {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
}
/**
*
*
*
* If start time is empty and end time is not empty, then ignore these
* facet values before end time.
*
*
* .google.protobuf.Timestamp end_time = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
getEndTimeFieldBuilder() {
if (endTimeBuilder_ == null) {
endTimeBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>(
getEndTime(), getParentForChildren(), isClean());
endTime_ = null;
}
return endTimeBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues)
}
// @@protoc_insertion_point(class_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues)
private static final com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValues
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues();
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public IgnoredFacetValues parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface MergedFacetValueOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @return A list containing the values.
*/
java.util.List getValuesList();
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @return The count of values.
*/
int getValuesCount();
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the element to return.
* @return The values at the given index.
*/
java.lang.String getValues(int index);
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the value to return.
* @return The bytes of the values at the given index.
*/
com.google.protobuf.ByteString getValuesBytes(int index);
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @return The mergedValue.
*/
java.lang.String getMergedValue();
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @return The bytes for mergedValue.
*/
com.google.protobuf.ByteString getMergedValueBytes();
}
/**
*
*
*
* Replaces a set of textual facet values by the same (possibly different)
* merged facet value. Each facet value should appear at most once as a
* value per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]. This
* feature is available only for textual custom attributes.
*
*
* Protobuf type {@code
* google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue}
*/
public static final class MergedFacetValue extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue)
MergedFacetValueOrBuilder {
private static final long serialVersionUID = 0L;
// Use MergedFacetValue.newBuilder() to construct.
private MergedFacetValue(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MergedFacetValue() {
values_ = com.google.protobuf.LazyStringArrayList.emptyList();
mergedValue_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new MergedFacetValue();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacetValue_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacetValue_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.Builder.class);
}
public static final int VALUES_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList values_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @return A list containing the values.
*/
public com.google.protobuf.ProtocolStringList getValuesList() {
return values_;
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @return The count of values.
*/
public int getValuesCount() {
return values_.size();
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the element to return.
* @return The values at the given index.
*/
public java.lang.String getValues(int index) {
return values_.get(index);
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the value to return.
* @return The bytes of the values at the given index.
*/
public com.google.protobuf.ByteString getValuesBytes(int index) {
return values_.getByteString(index);
}
public static final int MERGED_VALUE_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object mergedValue_ = "";
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @return The mergedValue.
*/
@java.lang.Override
public java.lang.String getMergedValue() {
java.lang.Object ref = mergedValue_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
mergedValue_ = s;
return s;
}
}
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @return The bytes for mergedValue.
*/
@java.lang.Override
public com.google.protobuf.ByteString getMergedValueBytes() {
java.lang.Object ref = mergedValue_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
mergedValue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
for (int i = 0; i < values_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, values_.getRaw(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mergedValue_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, mergedValue_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < values_.size(); i++) {
dataSize += computeStringSizeNoTag(values_.getRaw(i));
}
size += dataSize;
size += 1 * getValuesList().size();
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mergedValue_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, mergedValue_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj
instanceof
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue)) {
return super.equals(obj);
}
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue other =
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue) obj;
if (!getValuesList().equals(other.getValuesList())) return false;
if (!getMergedValue().equals(other.getMergedValue())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getValuesCount() > 0) {
hash = (37 * hash) + VALUES_FIELD_NUMBER;
hash = (53 * hash) + getValuesList().hashCode();
}
hash = (37 * hash) + MERGED_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getMergedValue().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Replaces a set of textual facet values by the same (possibly different)
* merged facet value. Each facet value should appear at most once as a
* value per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]. This
* feature is available only for textual custom attributes.
*
*
* Protobuf type {@code
* google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue)
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValueOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacetValue_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacetValue_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.Builder.class);
}
// Construct using
// com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
values_ = com.google.protobuf.LazyStringArrayList.emptyList();
mergedValue_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacetValue_descriptor;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
getDefaultInstanceForType() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
build() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
buildPartial() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue result =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue(
this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
values_.makeImmutable();
result.values_ = values_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.mergedValue_ = mergedValue_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other
instanceof
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue) {
return mergeFrom(
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue)
other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue other) {
if (other
== com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.getDefaultInstance()) return this;
if (!other.values_.isEmpty()) {
if (values_.isEmpty()) {
values_ = other.values_;
bitField0_ |= 0x00000001;
} else {
ensureValuesIsMutable();
values_.addAll(other.values_);
}
onChanged();
}
if (!other.getMergedValue().isEmpty()) {
mergedValue_ = other.mergedValue_;
bitField0_ |= 0x00000002;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
java.lang.String s = input.readStringRequireUtf8();
ensureValuesIsMutable();
values_.add(s);
break;
} // case 10
case 18:
{
mergedValue_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.protobuf.LazyStringArrayList values_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureValuesIsMutable() {
if (!values_.isModifiable()) {
values_ = new com.google.protobuf.LazyStringArrayList(values_);
}
bitField0_ |= 0x00000001;
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @return A list containing the values.
*/
public com.google.protobuf.ProtocolStringList getValuesList() {
values_.makeImmutable();
return values_;
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @return The count of values.
*/
public int getValuesCount() {
return values_.size();
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the element to return.
* @return The values at the given index.
*/
public java.lang.String getValues(int index) {
return values_.get(index);
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index of the value to return.
* @return The bytes of the values at the given index.
*/
public com.google.protobuf.ByteString getValuesBytes(int index) {
return values_.getByteString(index);
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param index The index to set the value at.
* @param value The values to set.
* @return This builder for chaining.
*/
public Builder setValues(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureValuesIsMutable();
values_.set(index, value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param value The values to add.
* @return This builder for chaining.
*/
public Builder addValues(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureValuesIsMutable();
values_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param values The values to add.
* @return This builder for chaining.
*/
public Builder addAllValues(java.lang.Iterable values) {
ensureValuesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, values_);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @return This builder for chaining.
*/
public Builder clearValues() {
values_ = com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
;
onChanged();
return this;
}
/**
*
*
*
* All the facet values that are replaces by the same
* [merged_value][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.merged_value]
* that follows. The maximum number of values per MergedFacetValue is 25.
* Each value can have up to 128 characters.
*
*
* repeated string values = 1;
*
* @param value The bytes of the values to add.
* @return This builder for chaining.
*/
public Builder addValuesBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureValuesIsMutable();
values_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object mergedValue_ = "";
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @return The mergedValue.
*/
public java.lang.String getMergedValue() {
java.lang.Object ref = mergedValue_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
mergedValue_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @return The bytes for mergedValue.
*/
public com.google.protobuf.ByteString getMergedValueBytes() {
java.lang.Object ref = mergedValue_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
mergedValue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @param value The mergedValue to set.
* @return This builder for chaining.
*/
public Builder setMergedValue(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
mergedValue_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @return This builder for chaining.
*/
public Builder clearMergedValue() {
mergedValue_ = getDefaultInstance().getMergedValue();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* All the previous values are replaced by this merged facet value.
* This merged_value must be non-empty and can have up to 128 characters.
*
*
* string merged_value = 2;
*
* @param value The bytes for mergedValue to set.
* @return This builder for chaining.
*/
public Builder setMergedValueBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
mergedValue_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue)
}
// @@protoc_insertion_point(class_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue)
private static final com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValue
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue();
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MergedFacetValue parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface MergedFacetOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @return The mergedFacetKey.
*/
java.lang.String getMergedFacetKey();
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @return The bytes for mergedFacetKey.
*/
com.google.protobuf.ByteString getMergedFacetKeyBytes();
}
/**
*
*
*
* The current facet key (i.e. attribute config) maps into the
* [merged_facet_key][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.merged_facet_key].
* A facet key can have at most one child. The current facet key and the
* merged facet key need both to be textual custom attributes or both
* numerical custom attributes (same type).
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet}
*/
public static final class MergedFacet extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet)
MergedFacetOrBuilder {
private static final long serialVersionUID = 0L;
// Use MergedFacet.newBuilder() to construct.
private MergedFacet(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MergedFacet() {
mergedFacetKey_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new MergedFacet();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacet_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacet_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.Builder
.class);
}
public static final int MERGED_FACET_KEY_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object mergedFacetKey_ = "";
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @return The mergedFacetKey.
*/
@java.lang.Override
public java.lang.String getMergedFacetKey() {
java.lang.Object ref = mergedFacetKey_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
mergedFacetKey_ = s;
return s;
}
}
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @return The bytes for mergedFacetKey.
*/
@java.lang.Override
public com.google.protobuf.ByteString getMergedFacetKeyBytes() {
java.lang.Object ref = mergedFacetKey_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
mergedFacetKey_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mergedFacetKey_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, mergedFacetKey_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mergedFacetKey_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, mergedFacetKey_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj
instanceof com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet)) {
return super.equals(obj);
}
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet other =
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet) obj;
if (!getMergedFacetKey().equals(other.getMergedFacetKey())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + MERGED_FACET_KEY_FIELD_NUMBER;
hash = (53 * hash) + getMergedFacetKey().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* The current facet key (i.e. attribute config) maps into the
* [merged_facet_key][google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.merged_facet_key].
* A facet key can have at most one child. The current facet key and the
* merged facet key need both to be textual custom attributes or both
* numerical custom attributes (same type).
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet)
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacet_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacet_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.Builder
.class);
}
// Construct using
// com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
mergedFacetKey_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_MergedFacet_descriptor;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
getDefaultInstanceForType() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet build() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
buildPartial() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet result =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.mergedFacetKey_ = mergedFacetKey_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other
instanceof com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet) {
return mergeFrom(
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet other) {
if (other
== com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
.getDefaultInstance()) return this;
if (!other.getMergedFacetKey().isEmpty()) {
mergedFacetKey_ = other.mergedFacetKey_;
bitField0_ |= 0x00000001;
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
mergedFacetKey_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object mergedFacetKey_ = "";
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @return The mergedFacetKey.
*/
public java.lang.String getMergedFacetKey() {
java.lang.Object ref = mergedFacetKey_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
mergedFacetKey_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @return The bytes for mergedFacetKey.
*/
public com.google.protobuf.ByteString getMergedFacetKeyBytes() {
java.lang.Object ref = mergedFacetKey_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
mergedFacetKey_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @param value The mergedFacetKey to set.
* @return This builder for chaining.
*/
public Builder setMergedFacetKey(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
mergedFacetKey_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @return This builder for chaining.
*/
public Builder clearMergedFacetKey() {
mergedFacetKey_ = getDefaultInstance().getMergedFacetKey();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* The merged facet key should be a valid facet key that is different than
* the facet key of the current catalog attribute. We refer this is
* merged facet key as the child of the current catalog attribute. This
* merged facet key can't be a parent of another facet key (i.e. no
* directed path of length 2). This merged facet key needs to be either a
* textual custom attribute or a numerical custom attribute.
*
*
* string merged_facet_key = 1;
*
* @param value The bytes for mergedFacetKey to set.
* @return This builder for chaining.
*/
public Builder setMergedFacetKeyBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
mergedFacetKey_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet)
}
// @@protoc_insertion_point(class_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet)
private static final com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet();
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MergedFacet parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface RerankConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* If set to true, then we also rerank the dynamic facets based on the
* facet values engaged by the user for the current attribute key during
* serving.
*
*
* bool rerank_facet = 1;
*
* @return The rerankFacet.
*/
boolean getRerankFacet();
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @return A list containing the facetValues.
*/
java.util.List getFacetValuesList();
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @return The count of facetValues.
*/
int getFacetValuesCount();
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param index The index of the element to return.
* @return The facetValues at the given index.
*/
java.lang.String getFacetValues(int index);
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param index The index of the value to return.
* @return The bytes of the facetValues at the given index.
*/
com.google.protobuf.ByteString getFacetValuesBytes(int index);
}
/**
*
*
*
* Options to rerank based on facet values engaged by the user for the
* current key. That key needs to be a custom textual key and facetable.
* To use this control, you also need to pass all the facet keys engaged by
* the user in the request using the field [SearchRequest.FacetSpec]. In
* particular, if you don't pass the facet keys engaged that you want to
* rerank on, this control won't be effective. Moreover, to obtain better
* results, the facet values that you want to rerank on should be close to
* English (ideally made of words, underscores, and spaces).
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig}
*/
public static final class RerankConfig extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig)
RerankConfigOrBuilder {
private static final long serialVersionUID = 0L;
// Use RerankConfig.newBuilder() to construct.
private RerankConfig(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private RerankConfig() {
facetValues_ = com.google.protobuf.LazyStringArrayList.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new RerankConfig();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_RerankConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_RerankConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.Builder
.class);
}
public static final int RERANK_FACET_FIELD_NUMBER = 1;
private boolean rerankFacet_ = false;
/**
*
*
*
* If set to true, then we also rerank the dynamic facets based on the
* facet values engaged by the user for the current attribute key during
* serving.
*
*
* bool rerank_facet = 1;
*
* @return The rerankFacet.
*/
@java.lang.Override
public boolean getRerankFacet() {
return rerankFacet_;
}
public static final int FACET_VALUES_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList facetValues_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @return A list containing the facetValues.
*/
public com.google.protobuf.ProtocolStringList getFacetValuesList() {
return facetValues_;
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @return The count of facetValues.
*/
public int getFacetValuesCount() {
return facetValues_.size();
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param index The index of the element to return.
* @return The facetValues at the given index.
*/
public java.lang.String getFacetValues(int index) {
return facetValues_.get(index);
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param index The index of the value to return.
* @return The bytes of the facetValues at the given index.
*/
public com.google.protobuf.ByteString getFacetValuesBytes(int index) {
return facetValues_.getByteString(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (rerankFacet_ != false) {
output.writeBool(1, rerankFacet_);
}
for (int i = 0; i < facetValues_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, facetValues_.getRaw(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (rerankFacet_ != false) {
size += com.google.protobuf.CodedOutputStream.computeBoolSize(1, rerankFacet_);
}
{
int dataSize = 0;
for (int i = 0; i < facetValues_.size(); i++) {
dataSize += computeStringSizeNoTag(facetValues_.getRaw(i));
}
size += dataSize;
size += 1 * getFacetValuesList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj
instanceof com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig)) {
return super.equals(obj);
}
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig other =
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig) obj;
if (getRerankFacet() != other.getRerankFacet()) return false;
if (!getFacetValuesList().equals(other.getFacetValuesList())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + RERANK_FACET_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getRerankFacet());
if (getFacetValuesCount() > 0) {
hash = (37 * hash) + FACET_VALUES_FIELD_NUMBER;
hash = (53 * hash) + getFacetValuesList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Options to rerank based on facet values engaged by the user for the
* current key. That key needs to be a custom textual key and facetable.
* To use this control, you also need to pass all the facet keys engaged by
* the user in the request using the field [SearchRequest.FacetSpec]. In
* particular, if you don't pass the facet keys engaged that you want to
* rerank on, this control won't be effective. Moreover, to obtain better
* results, the facet values that you want to rerank on should be close to
* English (ideally made of words, underscores, and spaces).
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig)
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfigOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_RerankConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_RerankConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.Builder
.class);
}
// Construct using
// com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
rerankFacet_ = false;
facetValues_ = com.google.protobuf.LazyStringArrayList.emptyList();
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_RerankConfig_descriptor;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
getDefaultInstanceForType() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig build() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
buildPartial() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig result =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.rerankFacet_ = rerankFacet_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
facetValues_.makeImmutable();
result.facetValues_ = facetValues_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other
instanceof
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig) {
return mergeFrom(
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig other) {
if (other
== com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
.getDefaultInstance()) return this;
if (other.getRerankFacet() != false) {
setRerankFacet(other.getRerankFacet());
}
if (!other.facetValues_.isEmpty()) {
if (facetValues_.isEmpty()) {
facetValues_ = other.facetValues_;
bitField0_ |= 0x00000002;
} else {
ensureFacetValuesIsMutable();
facetValues_.addAll(other.facetValues_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8:
{
rerankFacet_ = input.readBool();
bitField0_ |= 0x00000001;
break;
} // case 8
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
ensureFacetValuesIsMutable();
facetValues_.add(s);
break;
} // case 18
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private boolean rerankFacet_;
/**
*
*
*
* If set to true, then we also rerank the dynamic facets based on the
* facet values engaged by the user for the current attribute key during
* serving.
*
*
* bool rerank_facet = 1;
*
* @return The rerankFacet.
*/
@java.lang.Override
public boolean getRerankFacet() {
return rerankFacet_;
}
/**
*
*
*
* If set to true, then we also rerank the dynamic facets based on the
* facet values engaged by the user for the current attribute key during
* serving.
*
*
* bool rerank_facet = 1;
*
* @param value The rerankFacet to set.
* @return This builder for chaining.
*/
public Builder setRerankFacet(boolean value) {
rerankFacet_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* If set to true, then we also rerank the dynamic facets based on the
* facet values engaged by the user for the current attribute key during
* serving.
*
*
* bool rerank_facet = 1;
*
* @return This builder for chaining.
*/
public Builder clearRerankFacet() {
bitField0_ = (bitField0_ & ~0x00000001);
rerankFacet_ = false;
onChanged();
return this;
}
private com.google.protobuf.LazyStringArrayList facetValues_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureFacetValuesIsMutable() {
if (!facetValues_.isModifiable()) {
facetValues_ = new com.google.protobuf.LazyStringArrayList(facetValues_);
}
bitField0_ |= 0x00000002;
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @return A list containing the facetValues.
*/
public com.google.protobuf.ProtocolStringList getFacetValuesList() {
facetValues_.makeImmutable();
return facetValues_;
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @return The count of facetValues.
*/
public int getFacetValuesCount() {
return facetValues_.size();
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param index The index of the element to return.
* @return The facetValues at the given index.
*/
public java.lang.String getFacetValues(int index) {
return facetValues_.get(index);
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param index The index of the value to return.
* @return The bytes of the facetValues at the given index.
*/
public com.google.protobuf.ByteString getFacetValuesBytes(int index) {
return facetValues_.getByteString(index);
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param index The index to set the value at.
* @param value The facetValues to set.
* @return This builder for chaining.
*/
public Builder setFacetValues(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureFacetValuesIsMutable();
facetValues_.set(index, value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param value The facetValues to add.
* @return This builder for chaining.
*/
public Builder addFacetValues(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureFacetValuesIsMutable();
facetValues_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param values The facetValues to add.
* @return This builder for chaining.
*/
public Builder addAllFacetValues(java.lang.Iterable values) {
ensureFacetValuesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, facetValues_);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @return This builder for chaining.
*/
public Builder clearFacetValues() {
facetValues_ = com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
;
onChanged();
return this;
}
/**
*
*
*
* If empty, rerank on all facet values for the current key. Otherwise,
* will rerank on the facet values from this list only.
*
*
* repeated string facet_values = 2;
*
* @param value The bytes of the facetValues to add.
* @return This builder for chaining.
*/
public Builder addFacetValuesBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureFacetValuesIsMutable();
facetValues_.add(value);
bitField0_ |= 0x00000002;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig)
}
// @@protoc_insertion_point(class_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig)
private static final com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig();
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public RerankConfig parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int FACET_INTERVALS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List facetIntervals_;
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
@java.lang.Override
public java.util.List getFacetIntervalsList() {
return facetIntervals_;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
@java.lang.Override
public java.util.List extends com.google.cloud.retail.v2alpha.IntervalOrBuilder>
getFacetIntervalsOrBuilderList() {
return facetIntervals_;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
@java.lang.Override
public int getFacetIntervalsCount() {
return facetIntervals_.size();
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.Interval getFacetIntervals(int index) {
return facetIntervals_.get(index);
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.IntervalOrBuilder getFacetIntervalsOrBuilder(int index) {
return facetIntervals_.get(index);
}
public static final int IGNORED_FACET_VALUES_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues>
ignoredFacetValues_;
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
@java.lang.Override
public java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues>
getIgnoredFacetValuesList() {
return ignoredFacetValues_;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
@java.lang.Override
public java.util.List<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValuesOrBuilder>
getIgnoredFacetValuesOrBuilderList() {
return ignoredFacetValues_;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
@java.lang.Override
public int getIgnoredFacetValuesCount() {
return ignoredFacetValues_.size();
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
getIgnoredFacetValues(int index) {
return ignoredFacetValues_.get(index);
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValuesOrBuilder
getIgnoredFacetValuesOrBuilder(int index) {
return ignoredFacetValues_.get(index);
}
public static final int MERGED_FACET_VALUES_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue>
mergedFacetValues_;
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
@java.lang.Override
public java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue>
getMergedFacetValuesList() {
return mergedFacetValues_;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
@java.lang.Override
public java.util.List<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValueOrBuilder>
getMergedFacetValuesOrBuilderList() {
return mergedFacetValues_;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
@java.lang.Override
public int getMergedFacetValuesCount() {
return mergedFacetValues_.size();
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
getMergedFacetValues(int index) {
return mergedFacetValues_.get(index);
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValueOrBuilder
getMergedFacetValuesOrBuilder(int index) {
return mergedFacetValues_.get(index);
}
public static final int MERGED_FACET_FIELD_NUMBER = 4;
private com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet mergedFacet_;
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*
* @return Whether the mergedFacet field is set.
*/
@java.lang.Override
public boolean hasMergedFacet() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*
* @return The mergedFacet.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
getMergedFacet() {
return mergedFacet_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
.getDefaultInstance()
: mergedFacet_;
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetOrBuilder
getMergedFacetOrBuilder() {
return mergedFacet_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
.getDefaultInstance()
: mergedFacet_;
}
public static final int RERANK_CONFIG_FIELD_NUMBER = 5;
private com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerankConfig_;
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*
* @return Whether the rerankConfig field is set.
*/
@java.lang.Override
public boolean hasRerankConfig() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*
* @return The rerankConfig.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
getRerankConfig() {
return rerankConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
.getDefaultInstance()
: rerankConfig_;
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfigOrBuilder
getRerankConfigOrBuilder() {
return rerankConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
.getDefaultInstance()
: rerankConfig_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
for (int i = 0; i < facetIntervals_.size(); i++) {
output.writeMessage(1, facetIntervals_.get(i));
}
for (int i = 0; i < ignoredFacetValues_.size(); i++) {
output.writeMessage(2, ignoredFacetValues_.get(i));
}
for (int i = 0; i < mergedFacetValues_.size(); i++) {
output.writeMessage(3, mergedFacetValues_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(4, getMergedFacet());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(5, getRerankConfig());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < facetIntervals_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, facetIntervals_.get(i));
}
for (int i = 0; i < ignoredFacetValues_.size(); i++) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(2, ignoredFacetValues_.get(i));
}
for (int i = 0; i < mergedFacetValues_.size(); i++) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(3, mergedFacetValues_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getMergedFacet());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getRerankConfig());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig)) {
return super.equals(obj);
}
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig other =
(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig) obj;
if (!getFacetIntervalsList().equals(other.getFacetIntervalsList())) return false;
if (!getIgnoredFacetValuesList().equals(other.getIgnoredFacetValuesList())) return false;
if (!getMergedFacetValuesList().equals(other.getMergedFacetValuesList())) return false;
if (hasMergedFacet() != other.hasMergedFacet()) return false;
if (hasMergedFacet()) {
if (!getMergedFacet().equals(other.getMergedFacet())) return false;
}
if (hasRerankConfig() != other.hasRerankConfig()) return false;
if (hasRerankConfig()) {
if (!getRerankConfig().equals(other.getRerankConfig())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getFacetIntervalsCount() > 0) {
hash = (37 * hash) + FACET_INTERVALS_FIELD_NUMBER;
hash = (53 * hash) + getFacetIntervalsList().hashCode();
}
if (getIgnoredFacetValuesCount() > 0) {
hash = (37 * hash) + IGNORED_FACET_VALUES_FIELD_NUMBER;
hash = (53 * hash) + getIgnoredFacetValuesList().hashCode();
}
if (getMergedFacetValuesCount() > 0) {
hash = (37 * hash) + MERGED_FACET_VALUES_FIELD_NUMBER;
hash = (53 * hash) + getMergedFacetValuesList().hashCode();
}
if (hasMergedFacet()) {
hash = (37 * hash) + MERGED_FACET_FIELD_NUMBER;
hash = (53 * hash) + getMergedFacet().hashCode();
}
if (hasRerankConfig()) {
hash = (37 * hash) + RERANK_CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getRerankConfig().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Possible options for the facet that corresponds to the current attribute
* config.
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig)
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfigOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.Builder.class);
}
// Construct using com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getFacetIntervalsFieldBuilder();
getIgnoredFacetValuesFieldBuilder();
getMergedFacetValuesFieldBuilder();
getMergedFacetFieldBuilder();
getRerankConfigFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (facetIntervalsBuilder_ == null) {
facetIntervals_ = java.util.Collections.emptyList();
} else {
facetIntervals_ = null;
facetIntervalsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
if (ignoredFacetValuesBuilder_ == null) {
ignoredFacetValues_ = java.util.Collections.emptyList();
} else {
ignoredFacetValues_ = null;
ignoredFacetValuesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
if (mergedFacetValuesBuilder_ == null) {
mergedFacetValues_ = java.util.Collections.emptyList();
} else {
mergedFacetValues_ = null;
mergedFacetValuesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000004);
mergedFacet_ = null;
if (mergedFacetBuilder_ != null) {
mergedFacetBuilder_.dispose();
mergedFacetBuilder_ = null;
}
rerankConfig_ = null;
if (rerankConfigBuilder_ != null) {
rerankConfigBuilder_.dispose();
rerankConfigBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_FacetConfig_descriptor;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
getDefaultInstanceForType() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig build() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig buildPartial() {
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig result =
new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartialRepeatedFields(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig result) {
if (facetIntervalsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
facetIntervals_ = java.util.Collections.unmodifiableList(facetIntervals_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.facetIntervals_ = facetIntervals_;
} else {
result.facetIntervals_ = facetIntervalsBuilder_.build();
}
if (ignoredFacetValuesBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
ignoredFacetValues_ = java.util.Collections.unmodifiableList(ignoredFacetValues_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.ignoredFacetValues_ = ignoredFacetValues_;
} else {
result.ignoredFacetValues_ = ignoredFacetValuesBuilder_.build();
}
if (mergedFacetValuesBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)) {
mergedFacetValues_ = java.util.Collections.unmodifiableList(mergedFacetValues_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.mergedFacetValues_ = mergedFacetValues_;
} else {
result.mergedFacetValues_ = mergedFacetValuesBuilder_.build();
}
}
private void buildPartial0(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000008) != 0)) {
result.mergedFacet_ =
mergedFacetBuilder_ == null ? mergedFacet_ : mergedFacetBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.rerankConfig_ =
rerankConfigBuilder_ == null ? rerankConfig_ : rerankConfigBuilder_.build();
to_bitField0_ |= 0x00000002;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig) {
return mergeFrom((com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig other) {
if (other
== com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.getDefaultInstance())
return this;
if (facetIntervalsBuilder_ == null) {
if (!other.facetIntervals_.isEmpty()) {
if (facetIntervals_.isEmpty()) {
facetIntervals_ = other.facetIntervals_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureFacetIntervalsIsMutable();
facetIntervals_.addAll(other.facetIntervals_);
}
onChanged();
}
} else {
if (!other.facetIntervals_.isEmpty()) {
if (facetIntervalsBuilder_.isEmpty()) {
facetIntervalsBuilder_.dispose();
facetIntervalsBuilder_ = null;
facetIntervals_ = other.facetIntervals_;
bitField0_ = (bitField0_ & ~0x00000001);
facetIntervalsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getFacetIntervalsFieldBuilder()
: null;
} else {
facetIntervalsBuilder_.addAllMessages(other.facetIntervals_);
}
}
}
if (ignoredFacetValuesBuilder_ == null) {
if (!other.ignoredFacetValues_.isEmpty()) {
if (ignoredFacetValues_.isEmpty()) {
ignoredFacetValues_ = other.ignoredFacetValues_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.addAll(other.ignoredFacetValues_);
}
onChanged();
}
} else {
if (!other.ignoredFacetValues_.isEmpty()) {
if (ignoredFacetValuesBuilder_.isEmpty()) {
ignoredFacetValuesBuilder_.dispose();
ignoredFacetValuesBuilder_ = null;
ignoredFacetValues_ = other.ignoredFacetValues_;
bitField0_ = (bitField0_ & ~0x00000002);
ignoredFacetValuesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getIgnoredFacetValuesFieldBuilder()
: null;
} else {
ignoredFacetValuesBuilder_.addAllMessages(other.ignoredFacetValues_);
}
}
}
if (mergedFacetValuesBuilder_ == null) {
if (!other.mergedFacetValues_.isEmpty()) {
if (mergedFacetValues_.isEmpty()) {
mergedFacetValues_ = other.mergedFacetValues_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.addAll(other.mergedFacetValues_);
}
onChanged();
}
} else {
if (!other.mergedFacetValues_.isEmpty()) {
if (mergedFacetValuesBuilder_.isEmpty()) {
mergedFacetValuesBuilder_.dispose();
mergedFacetValuesBuilder_ = null;
mergedFacetValues_ = other.mergedFacetValues_;
bitField0_ = (bitField0_ & ~0x00000004);
mergedFacetValuesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getMergedFacetValuesFieldBuilder()
: null;
} else {
mergedFacetValuesBuilder_.addAllMessages(other.mergedFacetValues_);
}
}
}
if (other.hasMergedFacet()) {
mergeMergedFacet(other.getMergedFacet());
}
if (other.hasRerankConfig()) {
mergeRerankConfig(other.getRerankConfig());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
com.google.cloud.retail.v2alpha.Interval m =
input.readMessage(
com.google.cloud.retail.v2alpha.Interval.parser(), extensionRegistry);
if (facetIntervalsBuilder_ == null) {
ensureFacetIntervalsIsMutable();
facetIntervals_.add(m);
} else {
facetIntervalsBuilder_.addMessage(m);
}
break;
} // case 10
case 18:
{
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
m =
input.readMessage(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValues.parser(),
extensionRegistry);
if (ignoredFacetValuesBuilder_ == null) {
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.add(m);
} else {
ignoredFacetValuesBuilder_.addMessage(m);
}
break;
} // case 18
case 26:
{
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue m =
input.readMessage(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValue.parser(),
extensionRegistry);
if (mergedFacetValuesBuilder_ == null) {
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.add(m);
} else {
mergedFacetValuesBuilder_.addMessage(m);
}
break;
} // case 26
case 34:
{
input.readMessage(getMergedFacetFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000008;
break;
} // case 34
case 42:
{
input.readMessage(getRerankConfigFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000010;
break;
} // case 42
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.util.List facetIntervals_ =
java.util.Collections.emptyList();
private void ensureFacetIntervalsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
facetIntervals_ =
new java.util.ArrayList(facetIntervals_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.Interval,
com.google.cloud.retail.v2alpha.Interval.Builder,
com.google.cloud.retail.v2alpha.IntervalOrBuilder>
facetIntervalsBuilder_;
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public java.util.List getFacetIntervalsList() {
if (facetIntervalsBuilder_ == null) {
return java.util.Collections.unmodifiableList(facetIntervals_);
} else {
return facetIntervalsBuilder_.getMessageList();
}
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public int getFacetIntervalsCount() {
if (facetIntervalsBuilder_ == null) {
return facetIntervals_.size();
} else {
return facetIntervalsBuilder_.getCount();
}
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public com.google.cloud.retail.v2alpha.Interval getFacetIntervals(int index) {
if (facetIntervalsBuilder_ == null) {
return facetIntervals_.get(index);
} else {
return facetIntervalsBuilder_.getMessage(index);
}
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder setFacetIntervals(int index, com.google.cloud.retail.v2alpha.Interval value) {
if (facetIntervalsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFacetIntervalsIsMutable();
facetIntervals_.set(index, value);
onChanged();
} else {
facetIntervalsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder setFacetIntervals(
int index, com.google.cloud.retail.v2alpha.Interval.Builder builderForValue) {
if (facetIntervalsBuilder_ == null) {
ensureFacetIntervalsIsMutable();
facetIntervals_.set(index, builderForValue.build());
onChanged();
} else {
facetIntervalsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder addFacetIntervals(com.google.cloud.retail.v2alpha.Interval value) {
if (facetIntervalsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFacetIntervalsIsMutable();
facetIntervals_.add(value);
onChanged();
} else {
facetIntervalsBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder addFacetIntervals(int index, com.google.cloud.retail.v2alpha.Interval value) {
if (facetIntervalsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFacetIntervalsIsMutable();
facetIntervals_.add(index, value);
onChanged();
} else {
facetIntervalsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder addFacetIntervals(
com.google.cloud.retail.v2alpha.Interval.Builder builderForValue) {
if (facetIntervalsBuilder_ == null) {
ensureFacetIntervalsIsMutable();
facetIntervals_.add(builderForValue.build());
onChanged();
} else {
facetIntervalsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder addFacetIntervals(
int index, com.google.cloud.retail.v2alpha.Interval.Builder builderForValue) {
if (facetIntervalsBuilder_ == null) {
ensureFacetIntervalsIsMutable();
facetIntervals_.add(index, builderForValue.build());
onChanged();
} else {
facetIntervalsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder addAllFacetIntervals(
java.lang.Iterable extends com.google.cloud.retail.v2alpha.Interval> values) {
if (facetIntervalsBuilder_ == null) {
ensureFacetIntervalsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, facetIntervals_);
onChanged();
} else {
facetIntervalsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder clearFacetIntervals() {
if (facetIntervalsBuilder_ == null) {
facetIntervals_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
facetIntervalsBuilder_.clear();
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public Builder removeFacetIntervals(int index) {
if (facetIntervalsBuilder_ == null) {
ensureFacetIntervalsIsMutable();
facetIntervals_.remove(index);
onChanged();
} else {
facetIntervalsBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public com.google.cloud.retail.v2alpha.Interval.Builder getFacetIntervalsBuilder(int index) {
return getFacetIntervalsFieldBuilder().getBuilder(index);
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public com.google.cloud.retail.v2alpha.IntervalOrBuilder getFacetIntervalsOrBuilder(
int index) {
if (facetIntervalsBuilder_ == null) {
return facetIntervals_.get(index);
} else {
return facetIntervalsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public java.util.List extends com.google.cloud.retail.v2alpha.IntervalOrBuilder>
getFacetIntervalsOrBuilderList() {
if (facetIntervalsBuilder_ != null) {
return facetIntervalsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(facetIntervals_);
}
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public com.google.cloud.retail.v2alpha.Interval.Builder addFacetIntervalsBuilder() {
return getFacetIntervalsFieldBuilder()
.addBuilder(com.google.cloud.retail.v2alpha.Interval.getDefaultInstance());
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public com.google.cloud.retail.v2alpha.Interval.Builder addFacetIntervalsBuilder(int index) {
return getFacetIntervalsFieldBuilder()
.addBuilder(index, com.google.cloud.retail.v2alpha.Interval.getDefaultInstance());
}
/**
*
*
*
* If you don't set the facet
* [SearchRequest.FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals]
* in the request to a numerical attribute, then we use the computed
* intervals with rounded bounds obtained from all its product numerical
* attribute values. The computed intervals might not be ideal for some
* attributes. Therefore, we give you the option to overwrite them with the
* facet_intervals field. The maximum of facet intervals per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 40.
* Each interval must have a lower bound or an upper bound. If both bounds
* are provided, then the lower bound must be smaller or equal than the
* upper bound.
*
*
* repeated .google.cloud.retail.v2alpha.Interval facet_intervals = 1;
*/
public java.util.List
getFacetIntervalsBuilderList() {
return getFacetIntervalsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.Interval,
com.google.cloud.retail.v2alpha.Interval.Builder,
com.google.cloud.retail.v2alpha.IntervalOrBuilder>
getFacetIntervalsFieldBuilder() {
if (facetIntervalsBuilder_ == null) {
facetIntervalsBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.Interval,
com.google.cloud.retail.v2alpha.Interval.Builder,
com.google.cloud.retail.v2alpha.IntervalOrBuilder>(
facetIntervals_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
facetIntervals_ = null;
}
return facetIntervalsBuilder_;
}
private java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues>
ignoredFacetValues_ = java.util.Collections.emptyList();
private void ensureIgnoredFacetValuesIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
ignoredFacetValues_ =
new java.util.ArrayList<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues>(
ignoredFacetValues_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValuesOrBuilder>
ignoredFacetValuesBuilder_;
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues>
getIgnoredFacetValuesList() {
if (ignoredFacetValuesBuilder_ == null) {
return java.util.Collections.unmodifiableList(ignoredFacetValues_);
} else {
return ignoredFacetValuesBuilder_.getMessageList();
}
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public int getIgnoredFacetValuesCount() {
if (ignoredFacetValuesBuilder_ == null) {
return ignoredFacetValues_.size();
} else {
return ignoredFacetValuesBuilder_.getCount();
}
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
getIgnoredFacetValues(int index) {
if (ignoredFacetValuesBuilder_ == null) {
return ignoredFacetValues_.get(index);
} else {
return ignoredFacetValuesBuilder_.getMessage(index);
}
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder setIgnoredFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues value) {
if (ignoredFacetValuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.set(index, value);
onChanged();
} else {
ignoredFacetValuesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder setIgnoredFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues.Builder
builderForValue) {
if (ignoredFacetValuesBuilder_ == null) {
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.set(index, builderForValue.build());
onChanged();
} else {
ignoredFacetValuesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder addIgnoredFacetValues(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues value) {
if (ignoredFacetValuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.add(value);
onChanged();
} else {
ignoredFacetValuesBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder addIgnoredFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues value) {
if (ignoredFacetValuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.add(index, value);
onChanged();
} else {
ignoredFacetValuesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder addIgnoredFacetValues(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues.Builder
builderForValue) {
if (ignoredFacetValuesBuilder_ == null) {
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.add(builderForValue.build());
onChanged();
} else {
ignoredFacetValuesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder addIgnoredFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues.Builder
builderForValue) {
if (ignoredFacetValuesBuilder_ == null) {
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.add(index, builderForValue.build());
onChanged();
} else {
ignoredFacetValuesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder addAllIgnoredFacetValues(
java.lang.Iterable<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValues>
values) {
if (ignoredFacetValuesBuilder_ == null) {
ensureIgnoredFacetValuesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, ignoredFacetValues_);
onChanged();
} else {
ignoredFacetValuesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder clearIgnoredFacetValues() {
if (ignoredFacetValuesBuilder_ == null) {
ignoredFacetValues_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
ignoredFacetValuesBuilder_.clear();
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public Builder removeIgnoredFacetValues(int index) {
if (ignoredFacetValuesBuilder_ == null) {
ensureIgnoredFacetValuesIsMutable();
ignoredFacetValues_.remove(index);
onChanged();
} else {
ignoredFacetValuesBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues.Builder
getIgnoredFacetValuesBuilder(int index) {
return getIgnoredFacetValuesFieldBuilder().getBuilder(index);
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValuesOrBuilder
getIgnoredFacetValuesOrBuilder(int index) {
if (ignoredFacetValuesBuilder_ == null) {
return ignoredFacetValues_.get(index);
} else {
return ignoredFacetValuesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public java.util.List<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValuesOrBuilder>
getIgnoredFacetValuesOrBuilderList() {
if (ignoredFacetValuesBuilder_ != null) {
return ignoredFacetValuesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(ignoredFacetValues_);
}
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues.Builder
addIgnoredFacetValuesBuilder() {
return getIgnoredFacetValuesFieldBuilder()
.addBuilder(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.getDefaultInstance());
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues.Builder
addIgnoredFacetValuesBuilder(int index) {
return getIgnoredFacetValuesFieldBuilder()
.addBuilder(
index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.getDefaultInstance());
}
/**
*
*
*
* Each instance represents a list of attribute values to ignore as facet
* values for a specific time range. The maximum number of instances per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 25.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues ignored_facet_values = 2;
*
*/
public java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.Builder>
getIgnoredFacetValuesBuilderList() {
return getIgnoredFacetValuesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValuesOrBuilder>
getIgnoredFacetValuesFieldBuilder() {
if (ignoredFacetValuesBuilder_ == null) {
ignoredFacetValuesBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.IgnoredFacetValues
.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.IgnoredFacetValuesOrBuilder>(
ignoredFacetValues_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
ignoredFacetValues_ = null;
}
return ignoredFacetValuesBuilder_;
}
private java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue>
mergedFacetValues_ = java.util.Collections.emptyList();
private void ensureMergedFacetValuesIsMutable() {
if (!((bitField0_ & 0x00000004) != 0)) {
mergedFacetValues_ =
new java.util.ArrayList<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue>(
mergedFacetValues_);
bitField0_ |= 0x00000004;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValueOrBuilder>
mergedFacetValuesBuilder_;
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue>
getMergedFacetValuesList() {
if (mergedFacetValuesBuilder_ == null) {
return java.util.Collections.unmodifiableList(mergedFacetValues_);
} else {
return mergedFacetValuesBuilder_.getMessageList();
}
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public int getMergedFacetValuesCount() {
if (mergedFacetValuesBuilder_ == null) {
return mergedFacetValues_.size();
} else {
return mergedFacetValuesBuilder_.getCount();
}
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
getMergedFacetValues(int index) {
if (mergedFacetValuesBuilder_ == null) {
return mergedFacetValues_.get(index);
} else {
return mergedFacetValuesBuilder_.getMessage(index);
}
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder setMergedFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue value) {
if (mergedFacetValuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.set(index, value);
onChanged();
} else {
mergedFacetValuesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder setMergedFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder
builderForValue) {
if (mergedFacetValuesBuilder_ == null) {
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.set(index, builderForValue.build());
onChanged();
} else {
mergedFacetValuesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder addMergedFacetValues(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue value) {
if (mergedFacetValuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.add(value);
onChanged();
} else {
mergedFacetValuesBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder addMergedFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue value) {
if (mergedFacetValuesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.add(index, value);
onChanged();
} else {
mergedFacetValuesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder addMergedFacetValues(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder
builderForValue) {
if (mergedFacetValuesBuilder_ == null) {
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.add(builderForValue.build());
onChanged();
} else {
mergedFacetValuesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder addMergedFacetValues(
int index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder
builderForValue) {
if (mergedFacetValuesBuilder_ == null) {
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.add(index, builderForValue.build());
onChanged();
} else {
mergedFacetValuesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder addAllMergedFacetValues(
java.lang.Iterable<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue>
values) {
if (mergedFacetValuesBuilder_ == null) {
ensureMergedFacetValuesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, mergedFacetValues_);
onChanged();
} else {
mergedFacetValuesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder clearMergedFacetValues() {
if (mergedFacetValuesBuilder_ == null) {
mergedFacetValues_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
mergedFacetValuesBuilder_.clear();
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public Builder removeMergedFacetValues(int index) {
if (mergedFacetValuesBuilder_ == null) {
ensureMergedFacetValuesIsMutable();
mergedFacetValues_.remove(index);
onChanged();
} else {
mergedFacetValuesBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder
getMergedFacetValuesBuilder(int index) {
return getMergedFacetValuesFieldBuilder().getBuilder(index);
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValueOrBuilder
getMergedFacetValuesOrBuilder(int index) {
if (mergedFacetValuesBuilder_ == null) {
return mergedFacetValues_.get(index);
} else {
return mergedFacetValuesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public java.util.List<
? extends
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValueOrBuilder>
getMergedFacetValuesOrBuilderList() {
if (mergedFacetValuesBuilder_ != null) {
return mergedFacetValuesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(mergedFacetValues_);
}
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder
addMergedFacetValuesBuilder() {
return getMergedFacetValuesFieldBuilder()
.addBuilder(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.getDefaultInstance());
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder
addMergedFacetValuesBuilder(int index) {
return getMergedFacetValuesFieldBuilder()
.addBuilder(
index,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.getDefaultInstance());
}
/**
*
*
*
* Each instance replaces a list of facet values by a merged facet
* value. If a facet value is not in any list, then it will stay the same.
* To avoid conflicts, only paths of length 1 are accepted. In other words,
* if "dark_blue" merged into "BLUE", then the latter can't merge into
* "blues" because this would create a path of length 2. The maximum number
* of instances of MergedFacetValue per
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] is 100.
* This feature is available only for textual custom attributes.
*
*
*
* repeated .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue merged_facet_values = 3;
*
*/
public java.util.List<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder>
getMergedFacetValuesBuilderList() {
return getMergedFacetValuesFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValueOrBuilder>
getMergedFacetValuesFieldBuilder() {
if (mergedFacetValuesBuilder_ == null) {
mergedFacetValuesBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetValue
.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetValueOrBuilder>(
mergedFacetValues_,
((bitField0_ & 0x00000004) != 0),
getParentForChildren(),
isClean());
mergedFacetValues_ = null;
}
return mergedFacetValuesBuilder_;
}
private com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet mergedFacet_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetOrBuilder>
mergedFacetBuilder_;
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*
* @return Whether the mergedFacet field is set.
*/
public boolean hasMergedFacet() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*
* @return The mergedFacet.
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
getMergedFacet() {
if (mergedFacetBuilder_ == null) {
return mergedFacet_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
.getDefaultInstance()
: mergedFacet_;
} else {
return mergedFacetBuilder_.getMessage();
}
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
public Builder setMergedFacet(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet value) {
if (mergedFacetBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
mergedFacet_ = value;
} else {
mergedFacetBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
public Builder setMergedFacet(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.Builder
builderForValue) {
if (mergedFacetBuilder_ == null) {
mergedFacet_ = builderForValue.build();
} else {
mergedFacetBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
public Builder mergeMergedFacet(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet value) {
if (mergedFacetBuilder_ == null) {
if (((bitField0_ & 0x00000008) != 0)
&& mergedFacet_ != null
&& mergedFacet_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
.getDefaultInstance()) {
getMergedFacetBuilder().mergeFrom(value);
} else {
mergedFacet_ = value;
}
} else {
mergedFacetBuilder_.mergeFrom(value);
}
if (mergedFacet_ != null) {
bitField0_ |= 0x00000008;
onChanged();
}
return this;
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
public Builder clearMergedFacet() {
bitField0_ = (bitField0_ & ~0x00000008);
mergedFacet_ = null;
if (mergedFacetBuilder_ != null) {
mergedFacetBuilder_.dispose();
mergedFacetBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.Builder
getMergedFacetBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getMergedFacetFieldBuilder().getBuilder();
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetOrBuilder
getMergedFacetOrBuilder() {
if (mergedFacetBuilder_ != null) {
return mergedFacetBuilder_.getMessageOrBuilder();
} else {
return mergedFacet_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet
.getDefaultInstance()
: mergedFacet_;
}
}
/**
*
*
*
* Use this field only if you want to merge a facet key into another facet
* key.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet merged_facet = 4;
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacetOrBuilder>
getMergedFacetFieldBuilder() {
if (mergedFacetBuilder_ == null) {
mergedFacetBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.MergedFacet.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.MergedFacetOrBuilder>(getMergedFacet(), getParentForChildren(), isClean());
mergedFacet_ = null;
}
return mergedFacetBuilder_;
}
private com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
rerankConfig_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfigOrBuilder>
rerankConfigBuilder_;
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*
* @return Whether the rerankConfig field is set.
*/
public boolean hasRerankConfig() {
return ((bitField0_ & 0x00000010) != 0);
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*
* @return The rerankConfig.
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
getRerankConfig() {
if (rerankConfigBuilder_ == null) {
return rerankConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
.getDefaultInstance()
: rerankConfig_;
} else {
return rerankConfigBuilder_.getMessage();
}
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
public Builder setRerankConfig(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig value) {
if (rerankConfigBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
rerankConfig_ = value;
} else {
rerankConfigBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
public Builder setRerankConfig(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.Builder
builderForValue) {
if (rerankConfigBuilder_ == null) {
rerankConfig_ = builderForValue.build();
} else {
rerankConfigBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
public Builder mergeRerankConfig(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig value) {
if (rerankConfigBuilder_ == null) {
if (((bitField0_ & 0x00000010) != 0)
&& rerankConfig_ != null
&& rerankConfig_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
.getDefaultInstance()) {
getRerankConfigBuilder().mergeFrom(value);
} else {
rerankConfig_ = value;
}
} else {
rerankConfigBuilder_.mergeFrom(value);
}
if (rerankConfig_ != null) {
bitField0_ |= 0x00000010;
onChanged();
}
return this;
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
public Builder clearRerankConfig() {
bitField0_ = (bitField0_ & ~0x00000010);
rerankConfig_ = null;
if (rerankConfigBuilder_ != null) {
rerankConfigBuilder_.dispose();
rerankConfigBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.Builder
getRerankConfigBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getRerankConfigFieldBuilder().getBuilder();
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfigOrBuilder
getRerankConfigOrBuilder() {
if (rerankConfigBuilder_ != null) {
return rerankConfigBuilder_.getMessageOrBuilder();
} else {
return rerankConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig
.getDefaultInstance()
: rerankConfig_;
}
}
/**
*
*
*
* Set this field only if you want to rerank based on facet values engaged
* by the user for the current key. This option is only possible for custom
* facetable textual keys.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig rerank_config = 5;
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfigOrBuilder>
getRerankConfigFieldBuilder() {
if (rerankConfigBuilder_ == null) {
rerankConfigBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.RerankConfig.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.RerankConfigOrBuilder>(getRerankConfig(), getParentForChildren(), isClean());
rerankConfig_ = null;
}
return rerankConfigBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig)
}
// @@protoc_insertion_point(class_scope:google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig)
private static final com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig();
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public FacetConfig parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int KEY_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object key_ = "";
/**
*
*
*
* Required. Attribute name.
* For example: `color`, `brands`, `attributes.custom_attribute`, such as
* `attributes.xyz`.
* To be indexable, the attribute name can contain only alpha-numeric
* characters and underscores. For example, an attribute named
* `attributes.abc_xyz` can be indexed, but an attribute named
* `attributes.abc-xyz` cannot be indexed.
*
* If the attribute key starts with `attributes.`, then the attribute is a
* custom attribute. Attributes such as `brands`, `patterns`, and `title` are
* built-in and called system attributes.
*
*
* string key = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The key.
*/
@java.lang.Override
public java.lang.String getKey() {
java.lang.Object ref = key_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
key_ = s;
return s;
}
}
/**
*
*
*
* Required. Attribute name.
* For example: `color`, `brands`, `attributes.custom_attribute`, such as
* `attributes.xyz`.
* To be indexable, the attribute name can contain only alpha-numeric
* characters and underscores. For example, an attribute named
* `attributes.abc_xyz` can be indexed, but an attribute named
* `attributes.abc-xyz` cannot be indexed.
*
* If the attribute key starts with `attributes.`, then the attribute is a
* custom attribute. Attributes such as `brands`, `patterns`, and `title` are
* built-in and called system attributes.
*
*
* string key = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for key.
*/
@java.lang.Override
public com.google.protobuf.ByteString getKeyBytes() {
java.lang.Object ref = key_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
key_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int IN_USE_FIELD_NUMBER = 9;
private boolean inUse_ = false;
/**
*
*
*
* Output only. Indicates whether this attribute has been used by any
* products. `True` if at least one
* [Product][google.cloud.retail.v2alpha.Product] is using this attribute in
* [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
* Otherwise, this field is `False`.
*
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] can be
* pre-loaded by using
* [CatalogService.AddCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.AddCatalogAttribute],
* [CatalogService.ImportCatalogAttributes][google.cloud.retail.v2alpha.CatalogService.ImportCatalogAttributes],
* or
* [CatalogService.UpdateAttributesConfig][google.cloud.retail.v2alpha.CatalogService.UpdateAttributesConfig]
* APIs. This field is `False` for pre-loaded
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]s.
*
* Only pre-loaded [catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are neither
* in use by products nor predefined can be deleted. [Catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are
* either in use by products or are predefined attributes cannot be deleted;
* however, their configuration properties will reset to default values upon
* removal request.
*
* After catalog changes, it takes about 10 minutes for this field to update.
*
*
* bool in_use = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The inUse.
*/
@java.lang.Override
public boolean getInUse() {
return inUse_;
}
public static final int TYPE_FIELD_NUMBER = 10;
private int type_ = 0;
/**
*
*
*
* Output only. The type of this attribute. This is derived from the attribute
* in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.AttributeType type = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override
public int getTypeValue() {
return type_;
}
/**
*
*
*
* Output only. The type of this attribute. This is derived from the attribute
* in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.AttributeType type = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The type.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType getType() {
com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType result =
com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType.forNumber(type_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType.UNRECOGNIZED
: result;
}
public static final int INDEXABLE_OPTION_FIELD_NUMBER = 5;
private int indexableOption_ = 0;
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
* are indexed so that it can be filtered, faceted, or boosted in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* Must be specified when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption indexable_option = 5;
*
*
* @return The enum numeric value on the wire for indexableOption.
*/
@java.lang.Override
public int getIndexableOptionValue() {
return indexableOption_;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
* are indexed so that it can be filtered, faceted, or boosted in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* Must be specified when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption indexable_option = 5;
*
*
* @return The indexableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption getIndexableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption.forNumber(
indexableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption.UNRECOGNIZED
: result;
}
public static final int DYNAMIC_FACETABLE_OPTION_FIELD_NUMBER = 6;
private int dynamicFacetableOption_ = 0;
/**
*
*
*
* If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
* facet. Could only be DYNAMIC_FACETABLE_DISABLED if
* [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
* is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
*
* Must be specified, otherwise throws INVALID_FORMAT error.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption dynamic_facetable_option = 6;
*
*
* @return The enum numeric value on the wire for dynamicFacetableOption.
*/
@java.lang.Override
public int getDynamicFacetableOptionValue() {
return dynamicFacetableOption_;
}
/**
*
*
*
* If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
* facet. Could only be DYNAMIC_FACETABLE_DISABLED if
* [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
* is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
*
* Must be specified, otherwise throws INVALID_FORMAT error.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption dynamic_facetable_option = 6;
*
*
* @return The dynamicFacetableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption
getDynamicFacetableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption.forNumber(
dynamicFacetableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption.UNRECOGNIZED
: result;
}
public static final int SEARCHABLE_OPTION_FIELD_NUMBER = 7;
private int searchableOption_ = 0;
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
* are searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
* will not be searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
* as there are no text values associated to numerical attributes.
*
* Must be specified, when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption searchable_option = 7;
*
*
* @return The enum numeric value on the wire for searchableOption.
*/
@java.lang.Override
public int getSearchableOptionValue() {
return searchableOption_;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
* are searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
* will not be searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
* as there are no text values associated to numerical attributes.
*
* Must be specified, when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption searchable_option = 7;
*
*
* @return The searchableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption getSearchableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption.forNumber(
searchableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption.UNRECOGNIZED
: result;
}
public static final int RECOMMENDATIONS_FILTERING_OPTION_FIELD_NUMBER = 8;
private int recommendationsFilteringOption_ = 0;
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
* attribute values are filterable for recommendations.
* This option works for categorical features only,
* does not work for numerical features, inventory filtering.
*
*
*
* .google.cloud.retail.v2alpha.RecommendationsFilteringOption recommendations_filtering_option = 8;
*
*
* @return The enum numeric value on the wire for recommendationsFilteringOption.
*/
@java.lang.Override
public int getRecommendationsFilteringOptionValue() {
return recommendationsFilteringOption_;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
* attribute values are filterable for recommendations.
* This option works for categorical features only,
* does not work for numerical features, inventory filtering.
*
*
*
* .google.cloud.retail.v2alpha.RecommendationsFilteringOption recommendations_filtering_option = 8;
*
*
* @return The recommendationsFilteringOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.RecommendationsFilteringOption
getRecommendationsFilteringOption() {
com.google.cloud.retail.v2alpha.RecommendationsFilteringOption result =
com.google.cloud.retail.v2alpha.RecommendationsFilteringOption.forNumber(
recommendationsFilteringOption_);
return result == null
? com.google.cloud.retail.v2alpha.RecommendationsFilteringOption.UNRECOGNIZED
: result;
}
public static final int EXACT_SEARCHABLE_OPTION_FIELD_NUMBER = 11;
private int exactSearchableOption_ = 0;
/**
*
*
*
* If EXACT_SEARCHABLE_ENABLED, attribute values will be exact searchable.
* This property only applies to textual custom attributes and requires
* indexable set to enabled to enable exact-searchable. If unset, the server
* behavior defaults to
* [EXACT_SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.EXACT_SEARCHABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption exact_searchable_option = 11;
*
*
* @return The enum numeric value on the wire for exactSearchableOption.
*/
@java.lang.Override
public int getExactSearchableOptionValue() {
return exactSearchableOption_;
}
/**
*
*
*
* If EXACT_SEARCHABLE_ENABLED, attribute values will be exact searchable.
* This property only applies to textual custom attributes and requires
* indexable set to enabled to enable exact-searchable. If unset, the server
* behavior defaults to
* [EXACT_SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.EXACT_SEARCHABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption exact_searchable_option = 11;
*
*
* @return The exactSearchableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption
getExactSearchableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.forNumber(
exactSearchableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.UNRECOGNIZED
: result;
}
public static final int RETRIEVABLE_OPTION_FIELD_NUMBER = 12;
private int retrievableOption_ = 0;
/**
*
*
*
* If RETRIEVABLE_ENABLED, attribute values are retrievable in the search
* results. If unset, the server behavior defaults to
* [RETRIEVABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.RETRIEVABLE_DISABLED].
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption retrievable_option = 12;
*
*
* @return The enum numeric value on the wire for retrievableOption.
*/
@java.lang.Override
public int getRetrievableOptionValue() {
return retrievableOption_;
}
/**
*
*
*
* If RETRIEVABLE_ENABLED, attribute values are retrievable in the search
* results. If unset, the server behavior defaults to
* [RETRIEVABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.RETRIEVABLE_DISABLED].
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption retrievable_option = 12;
*
*
* @return The retrievableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption getRetrievableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.forNumber(
retrievableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.UNRECOGNIZED
: result;
}
public static final int FACET_CONFIG_FIELD_NUMBER = 13;
private com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facetConfig_;
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*
* @return Whether the facetConfig field is set.
*/
@java.lang.Override
public boolean hasFacetConfig() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*
* @return The facetConfig.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig getFacetConfig() {
return facetConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.getDefaultInstance()
: facetConfig_;
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfigOrBuilder
getFacetConfigOrBuilder() {
return facetConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.getDefaultInstance()
: facetConfig_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(key_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, key_);
}
if (indexableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption
.INDEXABLE_OPTION_UNSPECIFIED
.getNumber()) {
output.writeEnum(5, indexableOption_);
}
if (dynamicFacetableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption
.DYNAMIC_FACETABLE_OPTION_UNSPECIFIED
.getNumber()) {
output.writeEnum(6, dynamicFacetableOption_);
}
if (searchableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption
.SEARCHABLE_OPTION_UNSPECIFIED
.getNumber()) {
output.writeEnum(7, searchableOption_);
}
if (recommendationsFilteringOption_
!= com.google.cloud.retail.v2alpha.RecommendationsFilteringOption
.RECOMMENDATIONS_FILTERING_OPTION_UNSPECIFIED
.getNumber()) {
output.writeEnum(8, recommendationsFilteringOption_);
}
if (inUse_ != false) {
output.writeBool(9, inUse_);
}
if (type_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType.UNKNOWN.getNumber()) {
output.writeEnum(10, type_);
}
if (exactSearchableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption
.EXACT_SEARCHABLE_OPTION_UNSPECIFIED
.getNumber()) {
output.writeEnum(11, exactSearchableOption_);
}
if (retrievableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption
.RETRIEVABLE_OPTION_UNSPECIFIED
.getNumber()) {
output.writeEnum(12, retrievableOption_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(13, getFacetConfig());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(key_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, key_);
}
if (indexableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption
.INDEXABLE_OPTION_UNSPECIFIED
.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(5, indexableOption_);
}
if (dynamicFacetableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption
.DYNAMIC_FACETABLE_OPTION_UNSPECIFIED
.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(6, dynamicFacetableOption_);
}
if (searchableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption
.SEARCHABLE_OPTION_UNSPECIFIED
.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(7, searchableOption_);
}
if (recommendationsFilteringOption_
!= com.google.cloud.retail.v2alpha.RecommendationsFilteringOption
.RECOMMENDATIONS_FILTERING_OPTION_UNSPECIFIED
.getNumber()) {
size +=
com.google.protobuf.CodedOutputStream.computeEnumSize(8, recommendationsFilteringOption_);
}
if (inUse_ != false) {
size += com.google.protobuf.CodedOutputStream.computeBoolSize(9, inUse_);
}
if (type_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType.UNKNOWN.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(10, type_);
}
if (exactSearchableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption
.EXACT_SEARCHABLE_OPTION_UNSPECIFIED
.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(11, exactSearchableOption_);
}
if (retrievableOption_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption
.RETRIEVABLE_OPTION_UNSPECIFIED
.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(12, retrievableOption_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(13, getFacetConfig());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.retail.v2alpha.CatalogAttribute)) {
return super.equals(obj);
}
com.google.cloud.retail.v2alpha.CatalogAttribute other =
(com.google.cloud.retail.v2alpha.CatalogAttribute) obj;
if (!getKey().equals(other.getKey())) return false;
if (getInUse() != other.getInUse()) return false;
if (type_ != other.type_) return false;
if (indexableOption_ != other.indexableOption_) return false;
if (dynamicFacetableOption_ != other.dynamicFacetableOption_) return false;
if (searchableOption_ != other.searchableOption_) return false;
if (recommendationsFilteringOption_ != other.recommendationsFilteringOption_) return false;
if (exactSearchableOption_ != other.exactSearchableOption_) return false;
if (retrievableOption_ != other.retrievableOption_) return false;
if (hasFacetConfig() != other.hasFacetConfig()) return false;
if (hasFacetConfig()) {
if (!getFacetConfig().equals(other.getFacetConfig())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + KEY_FIELD_NUMBER;
hash = (53 * hash) + getKey().hashCode();
hash = (37 * hash) + IN_USE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getInUse());
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + type_;
hash = (37 * hash) + INDEXABLE_OPTION_FIELD_NUMBER;
hash = (53 * hash) + indexableOption_;
hash = (37 * hash) + DYNAMIC_FACETABLE_OPTION_FIELD_NUMBER;
hash = (53 * hash) + dynamicFacetableOption_;
hash = (37 * hash) + SEARCHABLE_OPTION_FIELD_NUMBER;
hash = (53 * hash) + searchableOption_;
hash = (37 * hash) + RECOMMENDATIONS_FILTERING_OPTION_FIELD_NUMBER;
hash = (53 * hash) + recommendationsFilteringOption_;
hash = (37 * hash) + EXACT_SEARCHABLE_OPTION_FIELD_NUMBER;
hash = (53 * hash) + exactSearchableOption_;
hash = (37 * hash) + RETRIEVABLE_OPTION_FIELD_NUMBER;
hash = (53 * hash) + retrievableOption_;
if (hasFacetConfig()) {
hash = (37 * hash) + FACET_CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getFacetConfig().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.cloud.retail.v2alpha.CatalogAttribute prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Catalog level attribute config for an attribute. For example, if customers
* want to enable/disable facet for a specific attribute.
*
*
* Protobuf type {@code google.cloud.retail.v2alpha.CatalogAttribute}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.retail.v2alpha.CatalogAttribute)
com.google.cloud.retail.v2alpha.CatalogAttributeOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.retail.v2alpha.CatalogAttribute.class,
com.google.cloud.retail.v2alpha.CatalogAttribute.Builder.class);
}
// Construct using com.google.cloud.retail.v2alpha.CatalogAttribute.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getFacetConfigFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
key_ = "";
inUse_ = false;
type_ = 0;
indexableOption_ = 0;
dynamicFacetableOption_ = 0;
searchableOption_ = 0;
recommendationsFilteringOption_ = 0;
exactSearchableOption_ = 0;
retrievableOption_ = 0;
facetConfig_ = null;
if (facetConfigBuilder_ != null) {
facetConfigBuilder_.dispose();
facetConfigBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.retail.v2alpha.CatalogProto
.internal_static_google_cloud_retail_v2alpha_CatalogAttribute_descriptor;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute getDefaultInstanceForType() {
return com.google.cloud.retail.v2alpha.CatalogAttribute.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute build() {
com.google.cloud.retail.v2alpha.CatalogAttribute result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute buildPartial() {
com.google.cloud.retail.v2alpha.CatalogAttribute result =
new com.google.cloud.retail.v2alpha.CatalogAttribute(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.retail.v2alpha.CatalogAttribute result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.key_ = key_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.inUse_ = inUse_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.type_ = type_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.indexableOption_ = indexableOption_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.dynamicFacetableOption_ = dynamicFacetableOption_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.searchableOption_ = searchableOption_;
}
if (((from_bitField0_ & 0x00000040) != 0)) {
result.recommendationsFilteringOption_ = recommendationsFilteringOption_;
}
if (((from_bitField0_ & 0x00000080) != 0)) {
result.exactSearchableOption_ = exactSearchableOption_;
}
if (((from_bitField0_ & 0x00000100) != 0)) {
result.retrievableOption_ = retrievableOption_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000200) != 0)) {
result.facetConfig_ =
facetConfigBuilder_ == null ? facetConfig_ : facetConfigBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.retail.v2alpha.CatalogAttribute) {
return mergeFrom((com.google.cloud.retail.v2alpha.CatalogAttribute) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.retail.v2alpha.CatalogAttribute other) {
if (other == com.google.cloud.retail.v2alpha.CatalogAttribute.getDefaultInstance())
return this;
if (!other.getKey().isEmpty()) {
key_ = other.key_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.getInUse() != false) {
setInUse(other.getInUse());
}
if (other.type_ != 0) {
setTypeValue(other.getTypeValue());
}
if (other.indexableOption_ != 0) {
setIndexableOptionValue(other.getIndexableOptionValue());
}
if (other.dynamicFacetableOption_ != 0) {
setDynamicFacetableOptionValue(other.getDynamicFacetableOptionValue());
}
if (other.searchableOption_ != 0) {
setSearchableOptionValue(other.getSearchableOptionValue());
}
if (other.recommendationsFilteringOption_ != 0) {
setRecommendationsFilteringOptionValue(other.getRecommendationsFilteringOptionValue());
}
if (other.exactSearchableOption_ != 0) {
setExactSearchableOptionValue(other.getExactSearchableOptionValue());
}
if (other.retrievableOption_ != 0) {
setRetrievableOptionValue(other.getRetrievableOptionValue());
}
if (other.hasFacetConfig()) {
mergeFacetConfig(other.getFacetConfig());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
key_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 40:
{
indexableOption_ = input.readEnum();
bitField0_ |= 0x00000008;
break;
} // case 40
case 48:
{
dynamicFacetableOption_ = input.readEnum();
bitField0_ |= 0x00000010;
break;
} // case 48
case 56:
{
searchableOption_ = input.readEnum();
bitField0_ |= 0x00000020;
break;
} // case 56
case 64:
{
recommendationsFilteringOption_ = input.readEnum();
bitField0_ |= 0x00000040;
break;
} // case 64
case 72:
{
inUse_ = input.readBool();
bitField0_ |= 0x00000002;
break;
} // case 72
case 80:
{
type_ = input.readEnum();
bitField0_ |= 0x00000004;
break;
} // case 80
case 88:
{
exactSearchableOption_ = input.readEnum();
bitField0_ |= 0x00000080;
break;
} // case 88
case 96:
{
retrievableOption_ = input.readEnum();
bitField0_ |= 0x00000100;
break;
} // case 96
case 106:
{
input.readMessage(getFacetConfigFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000200;
break;
} // case 106
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object key_ = "";
/**
*
*
*
* Required. Attribute name.
* For example: `color`, `brands`, `attributes.custom_attribute`, such as
* `attributes.xyz`.
* To be indexable, the attribute name can contain only alpha-numeric
* characters and underscores. For example, an attribute named
* `attributes.abc_xyz` can be indexed, but an attribute named
* `attributes.abc-xyz` cannot be indexed.
*
* If the attribute key starts with `attributes.`, then the attribute is a
* custom attribute. Attributes such as `brands`, `patterns`, and `title` are
* built-in and called system attributes.
*
*
* string key = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The key.
*/
public java.lang.String getKey() {
java.lang.Object ref = key_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
key_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Required. Attribute name.
* For example: `color`, `brands`, `attributes.custom_attribute`, such as
* `attributes.xyz`.
* To be indexable, the attribute name can contain only alpha-numeric
* characters and underscores. For example, an attribute named
* `attributes.abc_xyz` can be indexed, but an attribute named
* `attributes.abc-xyz` cannot be indexed.
*
* If the attribute key starts with `attributes.`, then the attribute is a
* custom attribute. Attributes such as `brands`, `patterns`, and `title` are
* built-in and called system attributes.
*
*
* string key = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for key.
*/
public com.google.protobuf.ByteString getKeyBytes() {
java.lang.Object ref = key_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
key_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Required. Attribute name.
* For example: `color`, `brands`, `attributes.custom_attribute`, such as
* `attributes.xyz`.
* To be indexable, the attribute name can contain only alpha-numeric
* characters and underscores. For example, an attribute named
* `attributes.abc_xyz` can be indexed, but an attribute named
* `attributes.abc-xyz` cannot be indexed.
*
* If the attribute key starts with `attributes.`, then the attribute is a
* custom attribute. Attributes such as `brands`, `patterns`, and `title` are
* built-in and called system attributes.
*
*
* string key = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The key to set.
* @return This builder for chaining.
*/
public Builder setKey(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
key_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Required. Attribute name.
* For example: `color`, `brands`, `attributes.custom_attribute`, such as
* `attributes.xyz`.
* To be indexable, the attribute name can contain only alpha-numeric
* characters and underscores. For example, an attribute named
* `attributes.abc_xyz` can be indexed, but an attribute named
* `attributes.abc-xyz` cannot be indexed.
*
* If the attribute key starts with `attributes.`, then the attribute is a
* custom attribute. Attributes such as `brands`, `patterns`, and `title` are
* built-in and called system attributes.
*
*
* string key = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @return This builder for chaining.
*/
public Builder clearKey() {
key_ = getDefaultInstance().getKey();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Required. Attribute name.
* For example: `color`, `brands`, `attributes.custom_attribute`, such as
* `attributes.xyz`.
* To be indexable, the attribute name can contain only alpha-numeric
* characters and underscores. For example, an attribute named
* `attributes.abc_xyz` can be indexed, but an attribute named
* `attributes.abc-xyz` cannot be indexed.
*
* If the attribute key starts with `attributes.`, then the attribute is a
* custom attribute. Attributes such as `brands`, `patterns`, and `title` are
* built-in and called system attributes.
*
*
* string key = 1 [(.google.api.field_behavior) = REQUIRED];
*
* @param value The bytes for key to set.
* @return This builder for chaining.
*/
public Builder setKeyBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
key_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private boolean inUse_;
/**
*
*
*
* Output only. Indicates whether this attribute has been used by any
* products. `True` if at least one
* [Product][google.cloud.retail.v2alpha.Product] is using this attribute in
* [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
* Otherwise, this field is `False`.
*
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] can be
* pre-loaded by using
* [CatalogService.AddCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.AddCatalogAttribute],
* [CatalogService.ImportCatalogAttributes][google.cloud.retail.v2alpha.CatalogService.ImportCatalogAttributes],
* or
* [CatalogService.UpdateAttributesConfig][google.cloud.retail.v2alpha.CatalogService.UpdateAttributesConfig]
* APIs. This field is `False` for pre-loaded
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]s.
*
* Only pre-loaded [catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are neither
* in use by products nor predefined can be deleted. [Catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are
* either in use by products or are predefined attributes cannot be deleted;
* however, their configuration properties will reset to default values upon
* removal request.
*
* After catalog changes, it takes about 10 minutes for this field to update.
*
*
* bool in_use = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The inUse.
*/
@java.lang.Override
public boolean getInUse() {
return inUse_;
}
/**
*
*
*
* Output only. Indicates whether this attribute has been used by any
* products. `True` if at least one
* [Product][google.cloud.retail.v2alpha.Product] is using this attribute in
* [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
* Otherwise, this field is `False`.
*
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] can be
* pre-loaded by using
* [CatalogService.AddCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.AddCatalogAttribute],
* [CatalogService.ImportCatalogAttributes][google.cloud.retail.v2alpha.CatalogService.ImportCatalogAttributes],
* or
* [CatalogService.UpdateAttributesConfig][google.cloud.retail.v2alpha.CatalogService.UpdateAttributesConfig]
* APIs. This field is `False` for pre-loaded
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]s.
*
* Only pre-loaded [catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are neither
* in use by products nor predefined can be deleted. [Catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are
* either in use by products or are predefined attributes cannot be deleted;
* however, their configuration properties will reset to default values upon
* removal request.
*
* After catalog changes, it takes about 10 minutes for this field to update.
*
*
* bool in_use = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @param value The inUse to set.
* @return This builder for chaining.
*/
public Builder setInUse(boolean value) {
inUse_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* Output only. Indicates whether this attribute has been used by any
* products. `True` if at least one
* [Product][google.cloud.retail.v2alpha.Product] is using this attribute in
* [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
* Otherwise, this field is `False`.
*
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] can be
* pre-loaded by using
* [CatalogService.AddCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.AddCatalogAttribute],
* [CatalogService.ImportCatalogAttributes][google.cloud.retail.v2alpha.CatalogService.ImportCatalogAttributes],
* or
* [CatalogService.UpdateAttributesConfig][google.cloud.retail.v2alpha.CatalogService.UpdateAttributesConfig]
* APIs. This field is `False` for pre-loaded
* [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]s.
*
* Only pre-loaded [catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are neither
* in use by products nor predefined can be deleted. [Catalog
* attributes][google.cloud.retail.v2alpha.CatalogAttribute] that are
* either in use by products or are predefined attributes cannot be deleted;
* however, their configuration properties will reset to default values upon
* removal request.
*
* After catalog changes, it takes about 10 minutes for this field to update.
*
*
* bool in_use = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return This builder for chaining.
*/
public Builder clearInUse() {
bitField0_ = (bitField0_ & ~0x00000002);
inUse_ = false;
onChanged();
return this;
}
private int type_ = 0;
/**
*
*
*
* Output only. The type of this attribute. This is derived from the attribute
* in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.AttributeType type = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override
public int getTypeValue() {
return type_;
}
/**
*
*
*
* Output only. The type of this attribute. This is derived from the attribute
* in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.AttributeType type = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @param value The enum numeric value on the wire for type to set.
* @return This builder for chaining.
*/
public Builder setTypeValue(int value) {
type_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Output only. The type of this attribute. This is derived from the attribute
* in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.AttributeType type = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The type.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType getType() {
com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType result =
com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType.forNumber(type_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType.UNRECOGNIZED
: result;
}
/**
*
*
*
* Output only. The type of this attribute. This is derived from the attribute
* in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.AttributeType type = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @param value The type to set.
* @return This builder for chaining.
*/
public Builder setType(com.google.cloud.retail.v2alpha.CatalogAttribute.AttributeType value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
type_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* Output only. The type of this attribute. This is derived from the attribute
* in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.AttributeType type = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return This builder for chaining.
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000004);
type_ = 0;
onChanged();
return this;
}
private int indexableOption_ = 0;
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
* are indexed so that it can be filtered, faceted, or boosted in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* Must be specified when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption indexable_option = 5;
*
*
* @return The enum numeric value on the wire for indexableOption.
*/
@java.lang.Override
public int getIndexableOptionValue() {
return indexableOption_;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
* are indexed so that it can be filtered, faceted, or boosted in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* Must be specified when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption indexable_option = 5;
*
*
* @param value The enum numeric value on the wire for indexableOption to set.
* @return This builder for chaining.
*/
public Builder setIndexableOptionValue(int value) {
indexableOption_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
* are indexed so that it can be filtered, faceted, or boosted in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* Must be specified when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption indexable_option = 5;
*
*
* @return The indexableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption getIndexableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption.forNumber(
indexableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption.UNRECOGNIZED
: result;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
* are indexed so that it can be filtered, faceted, or boosted in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* Must be specified when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption indexable_option = 5;
*
*
* @param value The indexableOption to set.
* @return This builder for chaining.
*/
public Builder setIndexableOption(
com.google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
indexableOption_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
* are indexed so that it can be filtered, faceted, or boosted in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* Must be specified when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption indexable_option = 5;
*
*
* @return This builder for chaining.
*/
public Builder clearIndexableOption() {
bitField0_ = (bitField0_ & ~0x00000008);
indexableOption_ = 0;
onChanged();
return this;
}
private int dynamicFacetableOption_ = 0;
/**
*
*
*
* If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
* facet. Could only be DYNAMIC_FACETABLE_DISABLED if
* [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
* is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
*
* Must be specified, otherwise throws INVALID_FORMAT error.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption dynamic_facetable_option = 6;
*
*
* @return The enum numeric value on the wire for dynamicFacetableOption.
*/
@java.lang.Override
public int getDynamicFacetableOptionValue() {
return dynamicFacetableOption_;
}
/**
*
*
*
* If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
* facet. Could only be DYNAMIC_FACETABLE_DISABLED if
* [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
* is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
*
* Must be specified, otherwise throws INVALID_FORMAT error.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption dynamic_facetable_option = 6;
*
*
* @param value The enum numeric value on the wire for dynamicFacetableOption to set.
* @return This builder for chaining.
*/
public Builder setDynamicFacetableOptionValue(int value) {
dynamicFacetableOption_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
* facet. Could only be DYNAMIC_FACETABLE_DISABLED if
* [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
* is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
*
* Must be specified, otherwise throws INVALID_FORMAT error.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption dynamic_facetable_option = 6;
*
*
* @return The dynamicFacetableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption
getDynamicFacetableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption.forNumber(
dynamicFacetableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption.UNRECOGNIZED
: result;
}
/**
*
*
*
* If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
* facet. Could only be DYNAMIC_FACETABLE_DISABLED if
* [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
* is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
*
* Must be specified, otherwise throws INVALID_FORMAT error.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption dynamic_facetable_option = 6;
*
*
* @param value The dynamicFacetableOption to set.
* @return This builder for chaining.
*/
public Builder setDynamicFacetableOption(
com.google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000010;
dynamicFacetableOption_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
* facet. Could only be DYNAMIC_FACETABLE_DISABLED if
* [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
* is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
*
* Must be specified, otherwise throws INVALID_FORMAT error.
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption dynamic_facetable_option = 6;
*
*
* @return This builder for chaining.
*/
public Builder clearDynamicFacetableOption() {
bitField0_ = (bitField0_ & ~0x00000010);
dynamicFacetableOption_ = 0;
onChanged();
return this;
}
private int searchableOption_ = 0;
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
* are searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
* will not be searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
* as there are no text values associated to numerical attributes.
*
* Must be specified, when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption searchable_option = 7;
*
*
* @return The enum numeric value on the wire for searchableOption.
*/
@java.lang.Override
public int getSearchableOptionValue() {
return searchableOption_;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
* are searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
* will not be searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
* as there are no text values associated to numerical attributes.
*
* Must be specified, when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption searchable_option = 7;
*
*
* @param value The enum numeric value on the wire for searchableOption to set.
* @return This builder for chaining.
*/
public Builder setSearchableOptionValue(int value) {
searchableOption_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
* are searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
* will not be searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
* as there are no text values associated to numerical attributes.
*
* Must be specified, when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption searchable_option = 7;
*
*
* @return The searchableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption getSearchableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption.forNumber(
searchableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption.UNRECOGNIZED
: result;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
* are searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
* will not be searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
* as there are no text values associated to numerical attributes.
*
* Must be specified, when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption searchable_option = 7;
*
*
* @param value The searchableOption to set.
* @return This builder for chaining.
*/
public Builder setSearchableOption(
com.google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
searchableOption_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
* are searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
*
* If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
* will not be searchable by text queries in
* [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
* as there are no text values associated to numerical attributes.
*
* Must be specified, when
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, otherwise throws INVALID_FORMAT error.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption searchable_option = 7;
*
*
* @return This builder for chaining.
*/
public Builder clearSearchableOption() {
bitField0_ = (bitField0_ & ~0x00000020);
searchableOption_ = 0;
onChanged();
return this;
}
private int recommendationsFilteringOption_ = 0;
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
* attribute values are filterable for recommendations.
* This option works for categorical features only,
* does not work for numerical features, inventory filtering.
*
*
*
* .google.cloud.retail.v2alpha.RecommendationsFilteringOption recommendations_filtering_option = 8;
*
*
* @return The enum numeric value on the wire for recommendationsFilteringOption.
*/
@java.lang.Override
public int getRecommendationsFilteringOptionValue() {
return recommendationsFilteringOption_;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
* attribute values are filterable for recommendations.
* This option works for categorical features only,
* does not work for numerical features, inventory filtering.
*
*
*
* .google.cloud.retail.v2alpha.RecommendationsFilteringOption recommendations_filtering_option = 8;
*
*
* @param value The enum numeric value on the wire for recommendationsFilteringOption to set.
* @return This builder for chaining.
*/
public Builder setRecommendationsFilteringOptionValue(int value) {
recommendationsFilteringOption_ = value;
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
* attribute values are filterable for recommendations.
* This option works for categorical features only,
* does not work for numerical features, inventory filtering.
*
*
*
* .google.cloud.retail.v2alpha.RecommendationsFilteringOption recommendations_filtering_option = 8;
*
*
* @return The recommendationsFilteringOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.RecommendationsFilteringOption
getRecommendationsFilteringOption() {
com.google.cloud.retail.v2alpha.RecommendationsFilteringOption result =
com.google.cloud.retail.v2alpha.RecommendationsFilteringOption.forNumber(
recommendationsFilteringOption_);
return result == null
? com.google.cloud.retail.v2alpha.RecommendationsFilteringOption.UNRECOGNIZED
: result;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
* attribute values are filterable for recommendations.
* This option works for categorical features only,
* does not work for numerical features, inventory filtering.
*
*
*
* .google.cloud.retail.v2alpha.RecommendationsFilteringOption recommendations_filtering_option = 8;
*
*
* @param value The recommendationsFilteringOption to set.
* @return This builder for chaining.
*/
public Builder setRecommendationsFilteringOption(
com.google.cloud.retail.v2alpha.RecommendationsFilteringOption value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000040;
recommendationsFilteringOption_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* When
* [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
* is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
* attribute values are filterable for recommendations.
* This option works for categorical features only,
* does not work for numerical features, inventory filtering.
*
*
*
* .google.cloud.retail.v2alpha.RecommendationsFilteringOption recommendations_filtering_option = 8;
*
*
* @return This builder for chaining.
*/
public Builder clearRecommendationsFilteringOption() {
bitField0_ = (bitField0_ & ~0x00000040);
recommendationsFilteringOption_ = 0;
onChanged();
return this;
}
private int exactSearchableOption_ = 0;
/**
*
*
*
* If EXACT_SEARCHABLE_ENABLED, attribute values will be exact searchable.
* This property only applies to textual custom attributes and requires
* indexable set to enabled to enable exact-searchable. If unset, the server
* behavior defaults to
* [EXACT_SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.EXACT_SEARCHABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption exact_searchable_option = 11;
*
*
* @return The enum numeric value on the wire for exactSearchableOption.
*/
@java.lang.Override
public int getExactSearchableOptionValue() {
return exactSearchableOption_;
}
/**
*
*
*
* If EXACT_SEARCHABLE_ENABLED, attribute values will be exact searchable.
* This property only applies to textual custom attributes and requires
* indexable set to enabled to enable exact-searchable. If unset, the server
* behavior defaults to
* [EXACT_SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.EXACT_SEARCHABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption exact_searchable_option = 11;
*
*
* @param value The enum numeric value on the wire for exactSearchableOption to set.
* @return This builder for chaining.
*/
public Builder setExactSearchableOptionValue(int value) {
exactSearchableOption_ = value;
bitField0_ |= 0x00000080;
onChanged();
return this;
}
/**
*
*
*
* If EXACT_SEARCHABLE_ENABLED, attribute values will be exact searchable.
* This property only applies to textual custom attributes and requires
* indexable set to enabled to enable exact-searchable. If unset, the server
* behavior defaults to
* [EXACT_SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.EXACT_SEARCHABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption exact_searchable_option = 11;
*
*
* @return The exactSearchableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption
getExactSearchableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.forNumber(
exactSearchableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.UNRECOGNIZED
: result;
}
/**
*
*
*
* If EXACT_SEARCHABLE_ENABLED, attribute values will be exact searchable.
* This property only applies to textual custom attributes and requires
* indexable set to enabled to enable exact-searchable. If unset, the server
* behavior defaults to
* [EXACT_SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.EXACT_SEARCHABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption exact_searchable_option = 11;
*
*
* @param value The exactSearchableOption to set.
* @return This builder for chaining.
*/
public Builder setExactSearchableOption(
com.google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000080;
exactSearchableOption_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* If EXACT_SEARCHABLE_ENABLED, attribute values will be exact searchable.
* This property only applies to textual custom attributes and requires
* indexable set to enabled to enable exact-searchable. If unset, the server
* behavior defaults to
* [EXACT_SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption.EXACT_SEARCHABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.ExactSearchableOption exact_searchable_option = 11;
*
*
* @return This builder for chaining.
*/
public Builder clearExactSearchableOption() {
bitField0_ = (bitField0_ & ~0x00000080);
exactSearchableOption_ = 0;
onChanged();
return this;
}
private int retrievableOption_ = 0;
/**
*
*
*
* If RETRIEVABLE_ENABLED, attribute values are retrievable in the search
* results. If unset, the server behavior defaults to
* [RETRIEVABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.RETRIEVABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption retrievable_option = 12;
*
*
* @return The enum numeric value on the wire for retrievableOption.
*/
@java.lang.Override
public int getRetrievableOptionValue() {
return retrievableOption_;
}
/**
*
*
*
* If RETRIEVABLE_ENABLED, attribute values are retrievable in the search
* results. If unset, the server behavior defaults to
* [RETRIEVABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.RETRIEVABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption retrievable_option = 12;
*
*
* @param value The enum numeric value on the wire for retrievableOption to set.
* @return This builder for chaining.
*/
public Builder setRetrievableOptionValue(int value) {
retrievableOption_ = value;
bitField0_ |= 0x00000100;
onChanged();
return this;
}
/**
*
*
*
* If RETRIEVABLE_ENABLED, attribute values are retrievable in the search
* results. If unset, the server behavior defaults to
* [RETRIEVABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.RETRIEVABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption retrievable_option = 12;
*
*
* @return The retrievableOption.
*/
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption
getRetrievableOption() {
com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption result =
com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.forNumber(
retrievableOption_);
return result == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.UNRECOGNIZED
: result;
}
/**
*
*
*
* If RETRIEVABLE_ENABLED, attribute values are retrievable in the search
* results. If unset, the server behavior defaults to
* [RETRIEVABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.RETRIEVABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption retrievable_option = 12;
*
*
* @param value The retrievableOption to set.
* @return This builder for chaining.
*/
public Builder setRetrievableOption(
com.google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000100;
retrievableOption_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* If RETRIEVABLE_ENABLED, attribute values are retrievable in the search
* results. If unset, the server behavior defaults to
* [RETRIEVABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption.RETRIEVABLE_DISABLED].
*
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.RetrievableOption retrievable_option = 12;
*
*
* @return This builder for chaining.
*/
public Builder clearRetrievableOption() {
bitField0_ = (bitField0_ & ~0x00000100);
retrievableOption_ = 0;
onChanged();
return this;
}
private com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facetConfig_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfigOrBuilder>
facetConfigBuilder_;
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*
* @return Whether the facetConfig field is set.
*/
public boolean hasFacetConfig() {
return ((bitField0_ & 0x00000200) != 0);
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*
* @return The facetConfig.
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig getFacetConfig() {
if (facetConfigBuilder_ == null) {
return facetConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.getDefaultInstance()
: facetConfig_;
} else {
return facetConfigBuilder_.getMessage();
}
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
public Builder setFacetConfig(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig value) {
if (facetConfigBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
facetConfig_ = value;
} else {
facetConfigBuilder_.setMessage(value);
}
bitField0_ |= 0x00000200;
onChanged();
return this;
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
public Builder setFacetConfig(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.Builder builderForValue) {
if (facetConfigBuilder_ == null) {
facetConfig_ = builderForValue.build();
} else {
facetConfigBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000200;
onChanged();
return this;
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
public Builder mergeFacetConfig(
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig value) {
if (facetConfigBuilder_ == null) {
if (((bitField0_ & 0x00000200) != 0)
&& facetConfig_ != null
&& facetConfig_
!= com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig
.getDefaultInstance()) {
getFacetConfigBuilder().mergeFrom(value);
} else {
facetConfig_ = value;
}
} else {
facetConfigBuilder_.mergeFrom(value);
}
if (facetConfig_ != null) {
bitField0_ |= 0x00000200;
onChanged();
}
return this;
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
public Builder clearFacetConfig() {
bitField0_ = (bitField0_ & ~0x00000200);
facetConfig_ = null;
if (facetConfigBuilder_ != null) {
facetConfigBuilder_.dispose();
facetConfigBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.Builder
getFacetConfigBuilder() {
bitField0_ |= 0x00000200;
onChanged();
return getFacetConfigFieldBuilder().getBuilder();
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
public com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfigOrBuilder
getFacetConfigOrBuilder() {
if (facetConfigBuilder_ != null) {
return facetConfigBuilder_.getMessageOrBuilder();
} else {
return facetConfig_ == null
? com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.getDefaultInstance()
: facetConfig_;
}
}
/**
*
*
*
* Contains facet options.
*
*
* .google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig facet_config = 13;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfigOrBuilder>
getFacetConfigFieldBuilder() {
if (facetConfigBuilder_ == null) {
facetConfigBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfig.Builder,
com.google.cloud.retail.v2alpha.CatalogAttribute.FacetConfigOrBuilder>(
getFacetConfig(), getParentForChildren(), isClean());
facetConfig_ = null;
}
return facetConfigBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.retail.v2alpha.CatalogAttribute)
}
// @@protoc_insertion_point(class_scope:google.cloud.retail.v2alpha.CatalogAttribute)
private static final com.google.cloud.retail.v2alpha.CatalogAttribute DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.retail.v2alpha.CatalogAttribute();
}
public static com.google.cloud.retail.v2alpha.CatalogAttribute getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CatalogAttribute parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.cloud.retail.v2alpha.CatalogAttribute getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy