Interface GroundingFactOrBuilder (0.39.0)

public interface GroundingFactOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

containsAttributes(String key)

public abstract boolean containsAttributes(String key)

Attributes associated with the fact. Common attributes include source (indicating where the fact was sourced from), author (indicating the author of the fact), and so on.

map<string, string> attributes = 2;

Parameter
Name Description
key String
Returns
Type Description
boolean

getAttributes() (deprecated)

public abstract Map<String,String> getAttributes()

Use #getAttributesMap() instead.

Returns
Type Description
Map<String,String>

getAttributesCount()

public abstract int getAttributesCount()

Attributes associated with the fact. Common attributes include source (indicating where the fact was sourced from), author (indicating the author of the fact), and so on.

map<string, string> attributes = 2;

Returns
Type Description
int

getAttributesMap()

public abstract Map<String,String> getAttributesMap()

Attributes associated with the fact. Common attributes include source (indicating where the fact was sourced from), author (indicating the author of the fact), and so on.

map<string, string> attributes = 2;

Returns
Type Description
Map<String,String>

getAttributesOrDefault(String key, String defaultValue)

public abstract String getAttributesOrDefault(String key, String defaultValue)

Attributes associated with the fact. Common attributes include source (indicating where the fact was sourced from), author (indicating the author of the fact), and so on.

map<string, string> attributes = 2;

Parameters
Name Description
key String
defaultValue String
Returns
Type Description
String

getAttributesOrThrow(String key)

public abstract String getAttributesOrThrow(String key)

Attributes associated with the fact. Common attributes include source (indicating where the fact was sourced from), author (indicating the author of the fact), and so on.

map<string, string> attributes = 2;

Parameter
Name Description
key String
Returns
Type Description
String

getFactText()

public abstract String getFactText()

Text content of the fact. Can be at most 10K characters long.

string fact_text = 1;

Returns
Type Description
String

The factText.

getFactTextBytes()

public abstract ByteString getFactTextBytes()

Text content of the fact. Can be at most 10K characters long.

string fact_text = 1;

Returns
Type Description
ByteString

The bytes for factText.