com.google.cloud.language.v1.EntityMentionOrBuilder 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 EntityMentionOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.language.v1.EntityMention)
com.google.protobuf.MessageOrBuilder {
/**
*
* The mention text.
*
*
* .google.cloud.language.v1.TextSpan text = 1;
*/
boolean hasText();
/**
*
* The mention text.
*
*
* .google.cloud.language.v1.TextSpan text = 1;
*/
com.google.cloud.language.v1.TextSpan getText();
/**
*
* The mention text.
*
*
* .google.cloud.language.v1.TextSpan text = 1;
*/
com.google.cloud.language.v1.TextSpanOrBuilder getTextOrBuilder();
/**
*
* The type of the entity mention.
*
*
* .google.cloud.language.v1.EntityMention.Type type = 2;
*/
int getTypeValue();
/**
*
* The type of the entity mention.
*
*
* .google.cloud.language.v1.EntityMention.Type type = 2;
*/
com.google.cloud.language.v1.EntityMention.Type getType();
}