Interface Condition.QueryTermOrBuilder (0.41.0)

public static interface Condition.QueryTermOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getFullMatch()

public abstract boolean getFullMatch()

Whether the search query needs to exactly match the query term.

bool full_match = 2;

Returns
Type Description
boolean

The fullMatch.

getValue()

public abstract String getValue()

The specific query value to match against

Must be lowercase, must be UTF-8. Can have at most 3 space separated terms if full_match is true. Cannot be an empty string. Maximum length of 5000 characters.

string value = 1;

Returns
Type Description
String

The value.

getValueBytes()

public abstract ByteString getValueBytes()

The specific query value to match against

Must be lowercase, must be UTF-8. Can have at most 3 space separated terms if full_match is true. Cannot be an empty string. Maximum length of 5000 characters.

string value = 1;

Returns
Type Description
ByteString

The bytes for value.