com.google.cloud.language.v1.DependencyEdgeOrBuilder 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 DependencyEdgeOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.language.v1.DependencyEdge)
com.google.protobuf.MessageOrBuilder {
/**
*
* Represents the head of this token in the dependency tree.
* This is the index of the token which has an arc going to this token.
* The index is the position of the token in the array of tokens returned
* by the API method. If this token is a root token, then the
* `head_token_index` is its own index.
*
*
* int32 head_token_index = 1;
*/
int getHeadTokenIndex();
/**
*
* The parse label for the token.
*
*
* .google.cloud.language.v1.DependencyEdge.Label label = 2;
*/
int getLabelValue();
/**
*
* The parse label for the token.
*
*
* .google.cloud.language.v1.DependencyEdge.Label label = 2;
*/
com.google.cloud.language.v1.DependencyEdge.Label getLabel();
}