public final class AnnotateTextResponse extends GeneratedMessageV3 implements AnnotateTextResponseOrBuilder
The text annotations response message.
Protobuf type google.cloud.language.v1.AnnotateTextResponse
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
Static Fields
CATEGORIES_FIELD_NUMBER
public static final int CATEGORIES_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
DOCUMENT_SENTIMENT_FIELD_NUMBER
public static final int DOCUMENT_SENTIMENT_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
ENTITIES_FIELD_NUMBER
public static final int ENTITIES_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
LANGUAGE_FIELD_NUMBER
public static final int LANGUAGE_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
MODERATION_CATEGORIES_FIELD_NUMBER
public static final int MODERATION_CATEGORIES_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
SENTENCES_FIELD_NUMBER
public static final int SENTENCES_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
TOKENS_FIELD_NUMBER
public static final int TOKENS_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
Static Methods
getDefaultInstance()
public static AnnotateTextResponse getDefaultInstance()
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
newBuilder()
public static AnnotateTextResponse.Builder newBuilder()
newBuilder(AnnotateTextResponse prototype)
public static AnnotateTextResponse.Builder newBuilder(AnnotateTextResponse prototype)
parseDelimitedFrom(InputStream input)
public static AnnotateTextResponse parseDelimitedFrom(InputStream input)
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static AnnotateTextResponse parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
parseFrom(byte[] data)
public static AnnotateTextResponse parseFrom(byte[] data)
Parameter |
---|
Name | Description |
data | byte[]
|
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static AnnotateTextResponse parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
parseFrom(ByteString data)
public static AnnotateTextResponse parseFrom(ByteString data)
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static AnnotateTextResponse parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
parseFrom(CodedInputStream input)
public static AnnotateTextResponse parseFrom(CodedInputStream input)
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static AnnotateTextResponse parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
parseFrom(InputStream input)
public static AnnotateTextResponse parseFrom(InputStream input)
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static AnnotateTextResponse parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
parseFrom(ByteBuffer data)
public static AnnotateTextResponse parseFrom(ByteBuffer data)
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static AnnotateTextResponse parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
parser()
public static Parser<AnnotateTextResponse> parser()
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter |
---|
Name | Description |
obj | Object
|
Overrides
getCategories(int index)
public ClassificationCategory getCategories(int index)
Categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory categories = 6;
Parameter |
---|
Name | Description |
index | int
|
getCategoriesCount()
public int getCategoriesCount()
Categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory categories = 6;
Returns |
---|
Type | Description |
int | |
getCategoriesList()
public List<ClassificationCategory> getCategoriesList()
Categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory categories = 6;
getCategoriesOrBuilder(int index)
public ClassificationCategoryOrBuilder getCategoriesOrBuilder(int index)
Categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory categories = 6;
Parameter |
---|
Name | Description |
index | int
|
getCategoriesOrBuilderList()
public List<? extends ClassificationCategoryOrBuilder> getCategoriesOrBuilderList()
Categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory categories = 6;
Returns |
---|
Type | Description |
List<? extends com.google.cloud.language.v1.ClassificationCategoryOrBuilder> | |
getDefaultInstanceForType()
public AnnotateTextResponse getDefaultInstanceForType()
getDocumentSentiment()
public Sentiment getDocumentSentiment()
The overall sentiment for the document. Populated if the user enables
AnnotateTextRequest.Features.extract_document_sentiment.
.google.cloud.language.v1.Sentiment document_sentiment = 4;
Returns |
---|
Type | Description |
Sentiment | The documentSentiment.
|
getDocumentSentimentOrBuilder()
public SentimentOrBuilder getDocumentSentimentOrBuilder()
The overall sentiment for the document. Populated if the user enables
AnnotateTextRequest.Features.extract_document_sentiment.
.google.cloud.language.v1.Sentiment document_sentiment = 4;
getEntities(int index)
public Entity getEntities(int index)
Entities, along with their semantic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_entities.
repeated .google.cloud.language.v1.Entity entities = 3;
Parameter |
---|
Name | Description |
index | int
|
getEntitiesCount()
public int getEntitiesCount()
Entities, along with their semantic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_entities.
repeated .google.cloud.language.v1.Entity entities = 3;
Returns |
---|
Type | Description |
int | |
getEntitiesList()
public List<Entity> getEntitiesList()
Entities, along with their semantic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_entities.
repeated .google.cloud.language.v1.Entity entities = 3;
getEntitiesOrBuilder(int index)
public EntityOrBuilder getEntitiesOrBuilder(int index)
Entities, along with their semantic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_entities.
repeated .google.cloud.language.v1.Entity entities = 3;
Parameter |
---|
Name | Description |
index | int
|
getEntitiesOrBuilderList()
public List<? extends EntityOrBuilder> getEntitiesOrBuilderList()
Entities, along with their semantic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_entities.
repeated .google.cloud.language.v1.Entity entities = 3;
Returns |
---|
Type | Description |
List<? extends com.google.cloud.language.v1.EntityOrBuilder> | |
getLanguage()
public String getLanguage()
The language of the text, which will be the same as the language specified
in the request or, if not specified, the automatically-detected language.
See Document.language field
for more details.
string language = 5;
Returns |
---|
Type | Description |
String | The language.
|
getLanguageBytes()
public ByteString getLanguageBytes()
The language of the text, which will be the same as the language specified
in the request or, if not specified, the automatically-detected language.
See Document.language field
for more details.
string language = 5;
Returns |
---|
Type | Description |
ByteString | The bytes for language.
|
getModerationCategories(int index)
public ClassificationCategory getModerationCategories(int index)
Harmful and sensitive categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory moderation_categories = 7;
Parameter |
---|
Name | Description |
index | int
|
getModerationCategoriesCount()
public int getModerationCategoriesCount()
Harmful and sensitive categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory moderation_categories = 7;
Returns |
---|
Type | Description |
int | |
getModerationCategoriesList()
public List<ClassificationCategory> getModerationCategoriesList()
Harmful and sensitive categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory moderation_categories = 7;
getModerationCategoriesOrBuilder(int index)
public ClassificationCategoryOrBuilder getModerationCategoriesOrBuilder(int index)
Harmful and sensitive categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory moderation_categories = 7;
Parameter |
---|
Name | Description |
index | int
|
getModerationCategoriesOrBuilderList()
public List<? extends ClassificationCategoryOrBuilder> getModerationCategoriesOrBuilderList()
Harmful and sensitive categories identified in the input document.
repeated .google.cloud.language.v1.ClassificationCategory moderation_categories = 7;
Returns |
---|
Type | Description |
List<? extends com.google.cloud.language.v1.ClassificationCategoryOrBuilder> | |
getParserForType()
public Parser<AnnotateTextResponse> getParserForType()
Overrides
getSentences(int index)
public Sentence getSentences(int index)
Sentences in the input document. Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Sentence sentences = 1;
Parameter |
---|
Name | Description |
index | int
|
getSentencesCount()
public int getSentencesCount()
Sentences in the input document. Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Sentence sentences = 1;
Returns |
---|
Type | Description |
int | |
getSentencesList()
public List<Sentence> getSentencesList()
Sentences in the input document. Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Sentence sentences = 1;
getSentencesOrBuilder(int index)
public SentenceOrBuilder getSentencesOrBuilder(int index)
Sentences in the input document. Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Sentence sentences = 1;
Parameter |
---|
Name | Description |
index | int
|
getSentencesOrBuilderList()
public List<? extends SentenceOrBuilder> getSentencesOrBuilderList()
Sentences in the input document. Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Sentence sentences = 1;
Returns |
---|
Type | Description |
List<? extends com.google.cloud.language.v1.SentenceOrBuilder> | |
getSerializedSize()
public int getSerializedSize()
Returns |
---|
Type | Description |
int | |
Overrides
getTokens(int index)
public Token getTokens(int index)
Tokens, along with their syntactic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Token tokens = 2;
Parameter |
---|
Name | Description |
index | int
|
Returns |
---|
Type | Description |
Token | |
getTokensCount()
public int getTokensCount()
Tokens, along with their syntactic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Token tokens = 2;
Returns |
---|
Type | Description |
int | |
getTokensList()
public List<Token> getTokensList()
Tokens, along with their syntactic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Token tokens = 2;
getTokensOrBuilder(int index)
public TokenOrBuilder getTokensOrBuilder(int index)
Tokens, along with their syntactic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Token tokens = 2;
Parameter |
---|
Name | Description |
index | int
|
getTokensOrBuilderList()
public List<? extends TokenOrBuilder> getTokensOrBuilderList()
Tokens, along with their syntactic information, in the input document.
Populated if the user enables
AnnotateTextRequest.Features.extract_syntax.
repeated .google.cloud.language.v1.Token tokens = 2;
Returns |
---|
Type | Description |
List<? extends com.google.cloud.language.v1.TokenOrBuilder> | |
hasDocumentSentiment()
public boolean hasDocumentSentiment()
The overall sentiment for the document. Populated if the user enables
AnnotateTextRequest.Features.extract_document_sentiment.
.google.cloud.language.v1.Sentiment document_sentiment = 4;
Returns |
---|
Type | Description |
boolean | Whether the documentSentiment field is set.
|
hashCode()
Returns |
---|
Type | Description |
int | |
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Overrides
isInitialized()
public final boolean isInitialized()
Overrides
newBuilderForType()
public AnnotateTextResponse.Builder newBuilderForType()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected AnnotateTextResponse.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Overrides
toBuilder()
public AnnotateTextResponse.Builder toBuilder()
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Overrides