public static interface SearchResponse.Facet.FacetValueOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getCount()
public abstract long getCount()Number of items that have this facet value.
int64 count = 3;
| Type | Description |
| long | The count. |
getFacetValueCase()
public abstract SearchResponse.Facet.FacetValue.FacetValueCase getFacetValueCase()| Type | Description |
| SearchResponse.Facet.FacetValue.FacetValueCase |
getInterval()
public abstract Interval getInterval()Interval value for a facet, such as [10, 20) for facet "price".
.google.cloud.retail.v2.Interval interval = 2;
| Type | Description |
| Interval | The interval. |
getIntervalOrBuilder()
public abstract IntervalOrBuilder getIntervalOrBuilder()Interval value for a facet, such as [10, 20) for facet "price".
.google.cloud.retail.v2.Interval interval = 2;
| Type | Description |
| IntervalOrBuilder |
getMaxValue()
public abstract double getMaxValue()The maximum value in the FacetValue.interval. Only supported on numerical facets and returned if SearchRequest.FacetSpec.FacetKey.return_min_max is true.
double max_value = 6;
| Type | Description |
| double | The maxValue. |
getMinValue()
public abstract double getMinValue()The minimum value in the FacetValue.interval. Only supported on numerical facets and returned if SearchRequest.FacetSpec.FacetKey.return_min_max is true.
double min_value = 5;
| Type | Description |
| double | The minValue. |
getValue()
public abstract String getValue()Text value of a facet, such as "Black" for facet "colorFamilies".
string value = 1;
| Type | Description |
| String | The value. |
getValueBytes()
public abstract ByteString getValueBytes()Text value of a facet, such as "Black" for facet "colorFamilies".
string value = 1;
| Type | Description |
| ByteString | The bytes for value. |
hasInterval()
public abstract boolean hasInterval()Interval value for a facet, such as [10, 20) for facet "price".
.google.cloud.retail.v2.Interval interval = 2;
| Type | Description |
| boolean | Whether the interval field is set. |
hasValue()
public abstract boolean hasValue()Text value of a facet, such as "Black" for facet "colorFamilies".
string value = 1;
| Type | Description |
| boolean | Whether the value field is set. |