Interface EntityOrBuilder (2.55.0)

publicinterface EntityOrBuilderextendsMessageOrBuilder

Implements

MessageOrBuilder

Methods

containsMetadata(String key)

publicabstractbooleancontainsMetadata(Stringkey)

Metadata associated with the entity.

For most entity types, the metadata is a Wikipedia URL (wikipedia_url) and Knowledge Graph MID (mid), if they are available. For the metadata associated with other entity types, see the Type table below.

map<string, string> metadata = 3;

Parameter
Name Description
key String
Returns
Type Description
boolean

getMentions(int index)

publicabstractEntityMentiongetMentions(intindex)

The mentions of this entity in the input document. The API currently supports proper noun mentions.

repeated .google.cloud.language.v1.EntityMention mentions = 5;

Parameter
Name Description
index int
Returns
Type Description
EntityMention

getMentionsCount()

publicabstractintgetMentionsCount()

The mentions of this entity in the input document. The API currently supports proper noun mentions.

repeated .google.cloud.language.v1.EntityMention mentions = 5;

Returns
Type Description
int

getMentionsList()

publicabstractList<EntityMention>getMentionsList()

The mentions of this entity in the input document. The API currently supports proper noun mentions.

repeated .google.cloud.language.v1.EntityMention mentions = 5;

Returns
Type Description
List<EntityMention>

getMentionsOrBuilder(int index)

publicabstractEntityMentionOrBuildergetMentionsOrBuilder(intindex)

The mentions of this entity in the input document. The API currently supports proper noun mentions.

repeated .google.cloud.language.v1.EntityMention mentions = 5;

Parameter
Name Description
index int
Returns
Type Description
EntityMentionOrBuilder

getMentionsOrBuilderList()

publicabstractList<?extendsEntityMentionOrBuilder>getMentionsOrBuilderList()

The mentions of this entity in the input document. The API currently supports proper noun mentions.

repeated .google.cloud.language.v1.EntityMention mentions = 5;

Returns
Type Description
List<? extends com.google.cloud.language.v1.EntityMentionOrBuilder>

getMetadata() (deprecated)

publicabstractMap<String,String>getMetadata()

Use #getMetadataMap() instead.

Returns
Type Description
Map<String,String>

getMetadataCount()

publicabstractintgetMetadataCount()

Metadata associated with the entity.

For most entity types, the metadata is a Wikipedia URL (wikipedia_url) and Knowledge Graph MID (mid), if they are available. For the metadata associated with other entity types, see the Type table below.

map<string, string> metadata = 3;

Returns
Type Description
int

getMetadataMap()

publicabstractMap<String,String>getMetadataMap()

Metadata associated with the entity.

For most entity types, the metadata is a Wikipedia URL (wikipedia_url) and Knowledge Graph MID (mid), if they are available. For the metadata associated with other entity types, see the Type table below.

map<string, string> metadata = 3;

Returns
Type Description
Map<String,String>

getMetadataOrDefault(String key, String defaultValue)

publicabstractStringgetMetadataOrDefault(Stringkey,StringdefaultValue)

Metadata associated with the entity.

For most entity types, the metadata is a Wikipedia URL (wikipedia_url) and Knowledge Graph MID (mid), if they are available. For the metadata associated with other entity types, see the Type table below.

map<string, string> metadata = 3;

Parameters
Name Description
key String
defaultValue String
Returns
Type Description
String

getMetadataOrThrow(String key)

publicabstractStringgetMetadataOrThrow(Stringkey)

Metadata associated with the entity.

For most entity types, the metadata is a Wikipedia URL (wikipedia_url) and Knowledge Graph MID (mid), if they are available. For the metadata associated with other entity types, see the Type table below.

map<string, string> metadata = 3;

Parameter
Name Description
key String
Returns
Type Description
String

getName()

publicabstractStringgetName()

The representative name for the entity.

string name = 1;

Returns
Type Description
String

The name.

getNameBytes()

publicabstractByteStringgetNameBytes()

The representative name for the entity.

string name = 1;

Returns
Type Description
ByteString

The bytes for name.

getSalience()

publicabstractfloatgetSalience()

The salience score associated with the entity in the [0, 1.0] range.

The salience score for an entity provides information about the importance or centrality of that entity to the entire document text. Scores closer to 0 are less salient, while scores closer to 1.0 are highly salient.

float salience = 4;

Returns
Type Description
float

The salience.

getSentiment()

publicabstractSentimentgetSentiment()

For calls to [AnalyzeEntitySentiment][] or if AnnotateTextRequest.Features.extract_entity_sentiment is set to true, this field will contain the aggregate sentiment expressed for this entity in the provided document.

.google.cloud.language.v1.Sentiment sentiment = 6;

Returns
Type Description
Sentiment

The sentiment.

getSentimentOrBuilder()

publicabstractSentimentOrBuildergetSentimentOrBuilder()

For calls to [AnalyzeEntitySentiment][] or if AnnotateTextRequest.Features.extract_entity_sentiment is set to true, this field will contain the aggregate sentiment expressed for this entity in the provided document.

.google.cloud.language.v1.Sentiment sentiment = 6;

Returns
Type Description
SentimentOrBuilder

getType()

publicabstractEntity.TypegetType()

The entity type.

.google.cloud.language.v1.Entity.Type type = 2;

Returns
Type Description
Entity.Type

The type.

getTypeValue()

publicabstractintgetTypeValue()

The entity type.

.google.cloud.language.v1.Entity.Type type = 2;

Returns
Type Description
int

The enum numeric value on the wire for type.

hasSentiment()

publicabstractbooleanhasSentiment()

For calls to [AnalyzeEntitySentiment][] or if AnnotateTextRequest.Features.extract_entity_sentiment is set to true, this field will contain the aggregate sentiment expressed for this entity in the provided document.

.google.cloud.language.v1.Sentiment sentiment = 6;

Returns
Type Description
boolean

Whether the sentiment field is set.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年10月30日 UTC.