- 0.62.0 (latest)
- 0.61.0
- 0.59.0
- 0.58.0
- 0.57.0
- 0.56.0
- 0.55.0
- 0.54.0
- 0.53.0
- 0.52.0
- 0.51.0
- 0.50.0
- 0.49.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.37.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
public static final class CalculatedMetric.Builder extends GeneratedMessageV3.Builder<CalculatedMetric.Builder> implements CalculatedMetricOrBuilder
A definition for a calculated metric.
Protobuf type google.analytics.admin.v1alpha.CalculatedMetric
Inheritance
Object > AbstractMessageLite.Builder<MessageType,BuilderType> > AbstractMessage.Builder<BuilderType> > GeneratedMessageV3.Builder > CalculatedMetric.BuilderImplements
CalculatedMetricOrBuilderStatic Methods
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns | |
---|---|
Type | Description |
Descriptor |
Methods
addAllRestrictedMetricType(Iterable<? extends CalculatedMetric.RestrictedMetricType> values)
public CalculatedMetric.Builder addAllRestrictedMetricType(Iterable<? extends CalculatedMetric.RestrictedMetricType> values)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
values | Iterable<? extends com.google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType> The restrictedMetricType to add. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
addAllRestrictedMetricTypeValue(Iterable<Integer> values)
public CalculatedMetric.Builder addAllRestrictedMetricTypeValue(Iterable<Integer> values)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
values | Iterable<Integer> The enum numeric values on the wire for restrictedMetricType to add. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
addRepeatedField(Descriptors.FieldDescriptor field, Object value)
public CalculatedMetric.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters | |
---|---|
Name | Description |
field | FieldDescriptor |
value | Object |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
addRestrictedMetricType(CalculatedMetric.RestrictedMetricType value)
public CalculatedMetric.Builder addRestrictedMetricType(CalculatedMetric.RestrictedMetricType value)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
value | CalculatedMetric.RestrictedMetricType The restrictedMetricType to add. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
addRestrictedMetricTypeValue(int value)
public CalculatedMetric.Builder addRestrictedMetricTypeValue(int value)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
value | int The enum numeric value on the wire for restrictedMetricType to add. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
build()
public CalculatedMetric build()
Returns | |
---|---|
Type | Description |
CalculatedMetric |
buildPartial()
public CalculatedMetric buildPartial()
Returns | |
---|---|
Type | Description |
CalculatedMetric |
clear()
public CalculatedMetric.Builder clear()
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
clearCalculatedMetricId()
public CalculatedMetric.Builder clearCalculatedMetricId()
Output only. The ID to use for the calculated metric. In the UI, this is referred to as the "API name."
The calculated_metric_id is used when referencing this calculated metric from external APIs. For example, "calcMetric:{calculated_metric_id}".
string calculated_metric_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clearDescription()
public CalculatedMetric.Builder clearDescription()
Optional. Description for this calculated metric. Max length of 4096 characters.
string description = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clearDisplayName()
public CalculatedMetric.Builder clearDisplayName()
Required. Display name for this calculated metric as shown in the Google Analytics UI. Max length 82 characters.
string display_name = 3 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clearField(Descriptors.FieldDescriptor field)
public CalculatedMetric.Builder clearField(Descriptors.FieldDescriptor field)
Parameter | |
---|---|
Name | Description |
field | FieldDescriptor |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
clearFormula()
public CalculatedMetric.Builder clearFormula()
Required. The calculated metric's definition. Maximum number of unique referenced custom metrics is 5. Formulas supports the following operations:
- (addition), - (subtraction), - (negative), * (multiplication), / (division), () (parenthesis). Any valid real numbers are acceptable that fit in a Long (64bit integer) or a Double (64 bit floating point number). Example formula: "( customEvent:parameter_name + cartPurchaseQuantity ) / 2.0"
string formula = 7 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clearInvalidMetricReference()
public CalculatedMetric.Builder clearInvalidMetricReference()
Output only. If true, this calculated metric has a invalid metric reference. Anything using a calculated metric with invalid_metric_reference set to true may fail, produce warnings, or produce unexpected results.
bool invalid_metric_reference = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clearMetricUnit()
public CalculatedMetric.Builder clearMetricUnit()
Required. The type for the calculated metric's value.
.google.analytics.admin.v1alpha.CalculatedMetric.MetricUnit metric_unit = 5 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clearName()
public CalculatedMetric.Builder clearName()
Output only. Resource name for this CalculatedMetric. Format: 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}'
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clearOneof(Descriptors.OneofDescriptor oneof)
public CalculatedMetric.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter | |
---|---|
Name | Description |
oneof | OneofDescriptor |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
clearRestrictedMetricType()
public CalculatedMetric.Builder clearRestrictedMetricType()
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
clone()
public CalculatedMetric.Builder clone()
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
getCalculatedMetricId()
public String getCalculatedMetricId()
Output only. The ID to use for the calculated metric. In the UI, this is referred to as the "API name."
The calculated_metric_id is used when referencing this calculated metric from external APIs. For example, "calcMetric:{calculated_metric_id}".
string calculated_metric_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
String | The calculatedMetricId. |
getCalculatedMetricIdBytes()
public ByteString getCalculatedMetricIdBytes()
Output only. The ID to use for the calculated metric. In the UI, this is referred to as the "API name."
The calculated_metric_id is used when referencing this calculated metric from external APIs. For example, "calcMetric:{calculated_metric_id}".
string calculated_metric_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for calculatedMetricId. |
getDefaultInstanceForType()
public CalculatedMetric getDefaultInstanceForType()
Returns | |
---|---|
Type | Description |
CalculatedMetric |
getDescription()
public String getDescription()
Optional. Description for this calculated metric. Max length of 4096 characters.
string description = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
String | The description. |
getDescriptionBytes()
public ByteString getDescriptionBytes()
Optional. Description for this calculated metric. Max length of 4096 characters.
string description = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for description. |
getDescriptorForType()
public Descriptors.Descriptor getDescriptorForType()
Returns | |
---|---|
Type | Description |
Descriptor |
getDisplayName()
public String getDisplayName()
Required. Display name for this calculated metric as shown in the Google Analytics UI. Max length 82 characters.
string display_name = 3 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
String | The displayName. |
getDisplayNameBytes()
public ByteString getDisplayNameBytes()
Required. Display name for this calculated metric as shown in the Google Analytics UI. Max length 82 characters.
string display_name = 3 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for displayName. |
getFormula()
public String getFormula()
Required. The calculated metric's definition. Maximum number of unique referenced custom metrics is 5. Formulas supports the following operations:
- (addition), - (subtraction), - (negative), * (multiplication), / (division), () (parenthesis). Any valid real numbers are acceptable that fit in a Long (64bit integer) or a Double (64 bit floating point number). Example formula: "( customEvent:parameter_name + cartPurchaseQuantity ) / 2.0"
string formula = 7 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
String | The formula. |
getFormulaBytes()
public ByteString getFormulaBytes()
Required. The calculated metric's definition. Maximum number of unique referenced custom metrics is 5. Formulas supports the following operations:
- (addition), - (subtraction), - (negative), * (multiplication), / (division), () (parenthesis). Any valid real numbers are acceptable that fit in a Long (64bit integer) or a Double (64 bit floating point number). Example formula: "( customEvent:parameter_name + cartPurchaseQuantity ) / 2.0"
string formula = 7 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for formula. |
getInvalidMetricReference()
public boolean getInvalidMetricReference()
Output only. If true, this calculated metric has a invalid metric reference. Anything using a calculated metric with invalid_metric_reference set to true may fail, produce warnings, or produce unexpected results.
bool invalid_metric_reference = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
boolean | The invalidMetricReference. |
getMetricUnit()
public CalculatedMetric.MetricUnit getMetricUnit()
Required. The type for the calculated metric's value.
.google.analytics.admin.v1alpha.CalculatedMetric.MetricUnit metric_unit = 5 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
CalculatedMetric.MetricUnit | The metricUnit. |
getMetricUnitValue()
public int getMetricUnitValue()
Required. The type for the calculated metric's value.
.google.analytics.admin.v1alpha.CalculatedMetric.MetricUnit metric_unit = 5 [(.google.api.field_behavior) = REQUIRED];
Returns | |
---|---|
Type | Description |
int | The enum numeric value on the wire for metricUnit. |
getName()
public String getName()
Output only. Resource name for this CalculatedMetric. Format: 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}'
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
String | The name. |
getNameBytes()
public ByteString getNameBytes()
Output only. Resource name for this CalculatedMetric. Format: 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}'
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
ByteString | The bytes for name. |
getRestrictedMetricType(int index)
public CalculatedMetric.RestrictedMetricType getRestrictedMetricType(int index)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
index | int The index of the element to return. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.RestrictedMetricType | The restrictedMetricType at the given index. |
getRestrictedMetricTypeCount()
public int getRestrictedMetricTypeCount()
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
int | The count of restrictedMetricType. |
getRestrictedMetricTypeList()
public List<CalculatedMetric.RestrictedMetricType> getRestrictedMetricTypeList()
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
List<RestrictedMetricType> | A list containing the restrictedMetricType. |
getRestrictedMetricTypeValue(int index)
public int getRestrictedMetricTypeValue(int index)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
index | int The index of the value to return. |
Returns | |
---|---|
Type | Description |
int | The enum numeric value on the wire of restrictedMetricType at the given index. |
getRestrictedMetricTypeValueList()
public List<Integer> getRestrictedMetricTypeValueList()
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Returns | |
---|---|
Type | Description |
List<Integer> | A list containing the enum numeric values on the wire for restrictedMetricType. |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns | |
---|---|
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Returns | |
---|---|
Type | Description |
boolean |
mergeFrom(CalculatedMetric other)
public CalculatedMetric.Builder mergeFrom(CalculatedMetric other)
Parameter | |
---|---|
Name | Description |
other | CalculatedMetric |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public CalculatedMetric.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
Exceptions | |
---|---|
Type | Description |
IOException |
mergeFrom(Message other)
public CalculatedMetric.Builder mergeFrom(Message other)
Parameter | |
---|---|
Name | Description |
other | Message |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
mergeUnknownFields(UnknownFieldSet unknownFields)
public final CalculatedMetric.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter | |
---|---|
Name | Description |
unknownFields | UnknownFieldSet |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
setCalculatedMetricId(String value)
public CalculatedMetric.Builder setCalculatedMetricId(String value)
Output only. The ID to use for the calculated metric. In the UI, this is referred to as the "API name."
The calculated_metric_id is used when referencing this calculated metric from external APIs. For example, "calcMetric:{calculated_metric_id}".
string calculated_metric_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
value | String The calculatedMetricId to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setCalculatedMetricIdBytes(ByteString value)
public CalculatedMetric.Builder setCalculatedMetricIdBytes(ByteString value)
Output only. The ID to use for the calculated metric. In the UI, this is referred to as the "API name."
The calculated_metric_id is used when referencing this calculated metric from external APIs. For example, "calcMetric:{calculated_metric_id}".
string calculated_metric_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
value | ByteString The bytes for calculatedMetricId to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setDescription(String value)
public CalculatedMetric.Builder setDescription(String value)
Optional. Description for this calculated metric. Max length of 4096 characters.
string description = 2 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
value | String The description to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setDescriptionBytes(ByteString value)
public CalculatedMetric.Builder setDescriptionBytes(ByteString value)
Optional. Description for this calculated metric. Max length of 4096 characters.
string description = 2 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
value | ByteString The bytes for description to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setDisplayName(String value)
public CalculatedMetric.Builder setDisplayName(String value)
Required. Display name for this calculated metric as shown in the Google Analytics UI. Max length 82 characters.
string display_name = 3 [(.google.api.field_behavior) = REQUIRED];
Parameter | |
---|---|
Name | Description |
value | String The displayName to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setDisplayNameBytes(ByteString value)
public CalculatedMetric.Builder setDisplayNameBytes(ByteString value)
Required. Display name for this calculated metric as shown in the Google Analytics UI. Max length 82 characters.
string display_name = 3 [(.google.api.field_behavior) = REQUIRED];
Parameter | |
---|---|
Name | Description |
value | ByteString The bytes for displayName to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setField(Descriptors.FieldDescriptor field, Object value)
public CalculatedMetric.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters | |
---|---|
Name | Description |
field | FieldDescriptor |
value | Object |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
setFormula(String value)
public CalculatedMetric.Builder setFormula(String value)
Required. The calculated metric's definition. Maximum number of unique referenced custom metrics is 5. Formulas supports the following operations:
- (addition), - (subtraction), - (negative), * (multiplication), / (division), () (parenthesis). Any valid real numbers are acceptable that fit in a Long (64bit integer) or a Double (64 bit floating point number). Example formula: "( customEvent:parameter_name + cartPurchaseQuantity ) / 2.0"
string formula = 7 [(.google.api.field_behavior) = REQUIRED];
Parameter | |
---|---|
Name | Description |
value | String The formula to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setFormulaBytes(ByteString value)
public CalculatedMetric.Builder setFormulaBytes(ByteString value)
Required. The calculated metric's definition. Maximum number of unique referenced custom metrics is 5. Formulas supports the following operations:
- (addition), - (subtraction), - (negative), * (multiplication), / (division), () (parenthesis). Any valid real numbers are acceptable that fit in a Long (64bit integer) or a Double (64 bit floating point number). Example formula: "( customEvent:parameter_name + cartPurchaseQuantity ) / 2.0"
string formula = 7 [(.google.api.field_behavior) = REQUIRED];
Parameter | |
---|---|
Name | Description |
value | ByteString The bytes for formula to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setInvalidMetricReference(boolean value)
public CalculatedMetric.Builder setInvalidMetricReference(boolean value)
Output only. If true, this calculated metric has a invalid metric reference. Anything using a calculated metric with invalid_metric_reference set to true may fail, produce warnings, or produce unexpected results.
bool invalid_metric_reference = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
value | boolean The invalidMetricReference to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setMetricUnit(CalculatedMetric.MetricUnit value)
public CalculatedMetric.Builder setMetricUnit(CalculatedMetric.MetricUnit value)
Required. The type for the calculated metric's value.
.google.analytics.admin.v1alpha.CalculatedMetric.MetricUnit metric_unit = 5 [(.google.api.field_behavior) = REQUIRED];
Parameter | |
---|---|
Name | Description |
value | CalculatedMetric.MetricUnit The metricUnit to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setMetricUnitValue(int value)
public CalculatedMetric.Builder setMetricUnitValue(int value)
Required. The type for the calculated metric's value.
.google.analytics.admin.v1alpha.CalculatedMetric.MetricUnit metric_unit = 5 [(.google.api.field_behavior) = REQUIRED];
Parameter | |
---|---|
Name | Description |
value | int The enum numeric value on the wire for metricUnit to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setName(String value)
public CalculatedMetric.Builder setName(String value)
Output only. Resource name for this CalculatedMetric. Format: 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}'
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
value | String The name to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setNameBytes(ByteString value)
public CalculatedMetric.Builder setNameBytes(ByteString value)
Output only. Resource name for this CalculatedMetric. Format: 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}'
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameter | |
---|---|
Name | Description |
value | ByteString The bytes for name to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
public CalculatedMetric.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters | |
---|---|
Name | Description |
field | FieldDescriptor |
index | int |
value | Object |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |
setRestrictedMetricType(int index, CalculatedMetric.RestrictedMetricType value)
public CalculatedMetric.Builder setRestrictedMetricType(int index, CalculatedMetric.RestrictedMetricType value)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameters | |
---|---|
Name | Description |
index | int The index to set the value at. |
value | CalculatedMetric.RestrictedMetricType The restrictedMetricType to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setRestrictedMetricTypeValue(int index, int value)
public CalculatedMetric.Builder setRestrictedMetricTypeValue(int index, int value)
Output only. Types of restricted data that this metric contains.
repeated .google.analytics.admin.v1alpha.CalculatedMetric.RestrictedMetricType restricted_metric_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
Parameters | |
---|---|
Name | Description |
index | int The index to set the value at. |
value | int The enum numeric value on the wire for restrictedMetricType to set. |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder | This builder for chaining. |
setUnknownFields(UnknownFieldSet unknownFields)
public final CalculatedMetric.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter | |
---|---|
Name | Description |
unknownFields | UnknownFieldSet |
Returns | |
---|---|
Type | Description |
CalculatedMetric.Builder |