Interface Condition.QueryTermOrBuilder (2.43.0)

public static interface Condition.QueryTermOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getFullMatch()

public abstract boolean getFullMatch()

Whether this is supposed to be a full or partial match.

bool full_match = 2;

Returns
TypeDescription
boolean

The fullMatch.

getValue()

public abstract String getValue()

The value of the term to match on. Value cannot be empty. Value can have at most 3 terms if specified as a partial match. Each space separated string is considered as one term. For example, "a b c" is 3 terms and allowed, but " a b c d" is 4 terms and not allowed for a partial match.

string value = 1;

Returns
TypeDescription
String

The value.

getValueBytes()

public abstract ByteString getValueBytes()

The value of the term to match on. Value cannot be empty. Value can have at most 3 terms if specified as a partial match. Each space separated string is considered as one term. For example, "a b c" is 3 terms and allowed, but " a b c d" is 4 terms and not allowed for a partial match.

string value = 1;

Returns
TypeDescription
ByteString

The bytes for value.