Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

docs(regen): update generated javadoc #21

Merged
merged 1 commit into from Dec 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -378,7 +378,7 @@ public final AnalyzeEntitySentimentResponse analyzeEntitySentiment(
// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Analyzes the syntax of the text and provides sentence boundaries and tokenization along with
* part of speech tags, dependency trees, and other properties.
* part-of-speech tags, dependency trees, and other properties.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -407,7 +407,7 @@ public final AnalyzeSyntaxResponse analyzeSyntax(Document document, EncodingType
// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Analyzes the syntax of the text and provides sentence boundaries and tokenization along with
* part of speech tags, dependency trees, and other properties.
* part-of-speech tags, dependency trees, and other properties.
*
* <p>Sample code:
*
Expand All @@ -431,7 +431,7 @@ public final AnalyzeSyntaxResponse analyzeSyntax(AnalyzeSyntaxRequest request) {
// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Analyzes the syntax of the text and provides sentence boundaries and tokenization along with
* part of speech tags, dependency trees, and other properties.
* part-of-speech tags, dependency trees, and other properties.
*
* <p>Sample code:
*
Expand Down
Expand Up @@ -475,7 +475,7 @@ public void analyzeEntitySentiment(
*
* <pre>
* Analyzes the syntax of the text and provides sentence boundaries and
* tokenization along with part of speech tags, dependency trees, and other
* tokenization along with part-of-speech tags, dependency trees, and other
* properties.
* </pre>
*/
Expand Down Expand Up @@ -647,7 +647,7 @@ public void analyzeEntitySentiment(
*
* <pre>
* Analyzes the syntax of the text and provides sentence boundaries and
* tokenization along with part of speech tags, dependency trees, and other
* tokenization along with part-of-speech tags, dependency trees, and other
* properties.
* </pre>
*/
Expand Down Expand Up @@ -768,7 +768,7 @@ public com.google.cloud.language.v1beta2.AnalyzeEntitySentimentResponse analyzeE
*
* <pre>
* Analyzes the syntax of the text and provides sentence boundaries and
* tokenization along with part of speech tags, dependency trees, and other
* tokenization along with part-of-speech tags, dependency trees, and other
* properties.
* </pre>
*/
Expand Down Expand Up @@ -881,7 +881,7 @@ protected LanguageServiceFutureStub build(
*
* <pre>
* Analyzes the syntax of the text and provides sentence boundaries and
* tokenization along with part of speech tags, dependency trees, and other
* tokenization along with part-of-speech tags, dependency trees, and other
* properties.
* </pre>
*/
Expand Down
Expand Up @@ -69,7 +69,7 @@ service LanguageService {
}

// Analyzes the syntax of the text and provides sentence boundaries and
// tokenization along with part of speech tags, dependency trees, and other
// tokenization along with part-of-speech tags, dependency trees, and other
// properties.
rpc AnalyzeSyntax(AnalyzeSyntaxRequest) returns (AnalyzeSyntaxResponse) {
option (google.api.http) = {
Expand Down Expand Up @@ -272,6 +272,21 @@ message Entity {
Sentiment sentiment = 6;
}

// Represents the smallest syntactic building block of the text.
message Token {
// The token text.
TextSpan text = 1;

// Parts of speech tag for this token.
PartOfSpeech part_of_speech = 2;

// Dependency tree parse for this token.
DependencyEdge dependency_edge = 3;

// [Lemma](https://en.wikipedia.org/wiki/Lemma_%28morphology%29) of the token.
string lemma = 4;
}

// Represents the text encoding that the caller uses to process the output.
// Providing an `EncodingType` is recommended because the API provides the
// beginning offsets for various outputs, such as tokens and mentions, and
Expand All @@ -298,21 +313,6 @@ enum EncodingType {
UTF32 = 3;
}

// Represents the smallest syntactic building block of the text.
message Token {
// The token text.
TextSpan text = 1;

// Parts of speech tag for this token.
PartOfSpeech part_of_speech = 2;

// Dependency tree parse for this token.
DependencyEdge dependency_edge = 3;

// [Lemma](https://en.wikipedia.org/wiki/Lemma_%28morphology%29) of the token.
string lemma = 4;
}

// Represents the feeling associated with the entire text or entities in
// the text.
// Next ID: 6
Expand Down
6 changes: 3 additions & 3 deletions synth.metadata
@@ -1,5 +1,5 @@
{
"updateTime": "2019-11-19T19:52:55.887585Z",
"updateTime": "2019-12-10T08:51:18.275634Z",
"sources": [
{
"generator": {
Expand All @@ -12,8 +12,8 @@
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "5af83f47b9656261cafcf88b0b3334521ab266b3",
"internalRef": "281334391"
"sha": "6cc9499e225a4f6a5e34fe07e390f67055d7991c",
"internalRef": "284643689"
}
},
{
Expand Down