public static interface DimensionExpression.ConcatenateExpressionOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getDelimiter()
public abstract String getDelimiter()The delimiter placed between dimension names. Delimiters are often single characters such as "|" or "," but can be longer strings. If a dimension value contains the delimiter, both will be present in response with no distinction. For example if dimension 1 value = "US,FR", dimension 2 value = "JP", and delimiter = ",", then the response will contain "US,FR,JP".
string delimiter = 2;
| Type | Description |
| String | The delimiter. |
getDelimiterBytes()
public abstract ByteString getDelimiterBytes()The delimiter placed between dimension names. Delimiters are often single characters such as "|" or "," but can be longer strings. If a dimension value contains the delimiter, both will be present in response with no distinction. For example if dimension 1 value = "US,FR", dimension 2 value = "JP", and delimiter = ",", then the response will contain "US,FR,JP".
string delimiter = 2;
| Type | Description |
| ByteString | The bytes for delimiter. |
getDimensionNames(int index)
public abstract String getDimensionNames(int index)Names of dimensions. The names must refer back to names in the dimensions field of the request.
repeated string dimension_names = 1;
| Name | Description |
| index | intThe index of the element to return. |
| Type | Description |
| String | The dimensionNames at the given index. |
getDimensionNamesBytes(int index)
public abstract ByteString getDimensionNamesBytes(int index)Names of dimensions. The names must refer back to names in the dimensions field of the request.
repeated string dimension_names = 1;
| Name | Description |
| index | intThe index of the value to return. |
| Type | Description |
| ByteString | The bytes of the dimensionNames at the given index. |
getDimensionNamesCount()
public abstract int getDimensionNamesCount()Names of dimensions. The names must refer back to names in the dimensions field of the request.
repeated string dimension_names = 1;
| Type | Description |
| int | The count of dimensionNames. |
getDimensionNamesList()
public abstract List<String> getDimensionNamesList()Names of dimensions. The names must refer back to names in the dimensions field of the request.
repeated string dimension_names = 1;
| Type | Description |
| List<String> | A list containing the dimensionNames. |