com.google.cloud.language.v1.AnalyzeEntitiesResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-google-cloud-language-v1 Show documentation
Show all versions of grpc-google-cloud-language-v1 Show documentation
GRPC library for grpc-google-cloud-language-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/language/v1/language_service.proto
package com.google.cloud.language.v1;
public interface AnalyzeEntitiesResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.language.v1.AnalyzeEntitiesResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The recognized entities in the input document.
*
*
* repeated .google.cloud.language.v1.Entity entities = 1;
*/
java.util.List
getEntitiesList();
/**
*
* The recognized entities in the input document.
*
*
* repeated .google.cloud.language.v1.Entity entities = 1;
*/
com.google.cloud.language.v1.Entity getEntities(int index);
/**
*
* The recognized entities in the input document.
*
*
* repeated .google.cloud.language.v1.Entity entities = 1;
*/
int getEntitiesCount();
/**
*
* The recognized entities in the input document.
*
*
* repeated .google.cloud.language.v1.Entity entities = 1;
*/
java.util.List extends com.google.cloud.language.v1.EntityOrBuilder>
getEntitiesOrBuilderList();
/**
*
* The recognized entities in the input document.
*
*
* repeated .google.cloud.language.v1.Entity entities = 1;
*/
com.google.cloud.language.v1.EntityOrBuilder getEntitiesOrBuilder(
int index);
/**
*
* 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 = 2;
*/
java.lang.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 = 2;
*/
com.google.protobuf.ByteString
getLanguageBytes();
}