Interface DimensionExpression.ConcatenateExpressionOrBuilder (0.52.0)

public static interface DimensionExpression.ConcatenateExpressionOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

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;

Returns
TypeDescription
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;

Returns
TypeDescription
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;

Parameter
NameDescription
indexint

The index of the element to return.

Returns
TypeDescription
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;

Parameter
NameDescription
indexint

The index of the value to return.

Returns
TypeDescription
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;

Returns
TypeDescription
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;

Returns
TypeDescription
List<String>

A list containing the dimensionNames.