com.google.cloud.language.v1.AnalyzeSentimentRequest 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;
/**
*
* The sentiment analysis request message.
*
*
* Protobuf type {@code google.cloud.language.v1.AnalyzeSentimentRequest}
*/
public final class AnalyzeSentimentRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.cloud.language.v1.AnalyzeSentimentRequest)
AnalyzeSentimentRequestOrBuilder {
// Use AnalyzeSentimentRequest.newBuilder() to construct.
private AnalyzeSentimentRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AnalyzeSentimentRequest() {
encodingType_ = 0;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return com.google.protobuf.UnknownFieldSet.getDefaultInstance();
}
private AnalyzeSentimentRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!input.skipField(tag)) {
done = true;
}
break;
}
case 10: {
com.google.cloud.language.v1.Document.Builder subBuilder = null;
if (document_ != null) {
subBuilder = document_.toBuilder();
}
document_ = input.readMessage(com.google.cloud.language.v1.Document.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(document_);
document_ = subBuilder.buildPartial();
}
break;
}
case 16: {
int rawValue = input.readEnum();
encodingType_ = rawValue;
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.language.v1.LanguageServiceProto.internal_static_google_cloud_language_v1_AnalyzeSentimentRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.language.v1.LanguageServiceProto.internal_static_google_cloud_language_v1_AnalyzeSentimentRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.language.v1.AnalyzeSentimentRequest.class, com.google.cloud.language.v1.AnalyzeSentimentRequest.Builder.class);
}
public static final int DOCUMENT_FIELD_NUMBER = 1;
private com.google.cloud.language.v1.Document document_;
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public boolean hasDocument() {
return document_ != null;
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public com.google.cloud.language.v1.Document getDocument() {
return document_ == null ? com.google.cloud.language.v1.Document.getDefaultInstance() : document_;
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public com.google.cloud.language.v1.DocumentOrBuilder getDocumentOrBuilder() {
return getDocument();
}
public static final int ENCODING_TYPE_FIELD_NUMBER = 2;
private int encodingType_;
/**
*
* The encoding type used by the API to calculate sentence offsets.
*
*
* .google.cloud.language.v1.EncodingType encoding_type = 2;
*/
public int getEncodingTypeValue() {
return encodingType_;
}
/**
*
* The encoding type used by the API to calculate sentence offsets.
*
*
* .google.cloud.language.v1.EncodingType encoding_type = 2;
*/
public com.google.cloud.language.v1.EncodingType getEncodingType() {
com.google.cloud.language.v1.EncodingType result = com.google.cloud.language.v1.EncodingType.valueOf(encodingType_);
return result == null ? com.google.cloud.language.v1.EncodingType.UNRECOGNIZED : result;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (document_ != null) {
output.writeMessage(1, getDocument());
}
if (encodingType_ != com.google.cloud.language.v1.EncodingType.NONE.getNumber()) {
output.writeEnum(2, encodingType_);
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (document_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getDocument());
}
if (encodingType_ != com.google.cloud.language.v1.EncodingType.NONE.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(2, encodingType_);
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.language.v1.AnalyzeSentimentRequest)) {
return super.equals(obj);
}
com.google.cloud.language.v1.AnalyzeSentimentRequest other = (com.google.cloud.language.v1.AnalyzeSentimentRequest) obj;
boolean result = true;
result = result && (hasDocument() == other.hasDocument());
if (hasDocument()) {
result = result && getDocument()
.equals(other.getDocument());
}
result = result && encodingType_ == other.encodingType_;
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasDocument()) {
hash = (37 * hash) + DOCUMENT_FIELD_NUMBER;
hash = (53 * hash) + getDocument().hashCode();
}
hash = (37 * hash) + ENCODING_TYPE_FIELD_NUMBER;
hash = (53 * hash) + encodingType_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.cloud.language.v1.AnalyzeSentimentRequest prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* The sentiment analysis request message.
*
*
* Protobuf type {@code google.cloud.language.v1.AnalyzeSentimentRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.cloud.language.v1.AnalyzeSentimentRequest)
com.google.cloud.language.v1.AnalyzeSentimentRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.language.v1.LanguageServiceProto.internal_static_google_cloud_language_v1_AnalyzeSentimentRequest_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.language.v1.LanguageServiceProto.internal_static_google_cloud_language_v1_AnalyzeSentimentRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.language.v1.AnalyzeSentimentRequest.class, com.google.cloud.language.v1.AnalyzeSentimentRequest.Builder.class);
}
// Construct using com.google.cloud.language.v1.AnalyzeSentimentRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
if (documentBuilder_ == null) {
document_ = null;
} else {
document_ = null;
documentBuilder_ = null;
}
encodingType_ = 0;
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.cloud.language.v1.LanguageServiceProto.internal_static_google_cloud_language_v1_AnalyzeSentimentRequest_descriptor;
}
public com.google.cloud.language.v1.AnalyzeSentimentRequest getDefaultInstanceForType() {
return com.google.cloud.language.v1.AnalyzeSentimentRequest.getDefaultInstance();
}
public com.google.cloud.language.v1.AnalyzeSentimentRequest build() {
com.google.cloud.language.v1.AnalyzeSentimentRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.cloud.language.v1.AnalyzeSentimentRequest buildPartial() {
com.google.cloud.language.v1.AnalyzeSentimentRequest result = new com.google.cloud.language.v1.AnalyzeSentimentRequest(this);
if (documentBuilder_ == null) {
result.document_ = document_;
} else {
result.document_ = documentBuilder_.build();
}
result.encodingType_ = encodingType_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.language.v1.AnalyzeSentimentRequest) {
return mergeFrom((com.google.cloud.language.v1.AnalyzeSentimentRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.language.v1.AnalyzeSentimentRequest other) {
if (other == com.google.cloud.language.v1.AnalyzeSentimentRequest.getDefaultInstance()) return this;
if (other.hasDocument()) {
mergeDocument(other.getDocument());
}
if (other.encodingType_ != 0) {
setEncodingTypeValue(other.getEncodingTypeValue());
}
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.language.v1.AnalyzeSentimentRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.cloud.language.v1.AnalyzeSentimentRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.google.cloud.language.v1.Document document_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.language.v1.Document, com.google.cloud.language.v1.Document.Builder, com.google.cloud.language.v1.DocumentOrBuilder> documentBuilder_;
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public boolean hasDocument() {
return documentBuilder_ != null || document_ != null;
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public com.google.cloud.language.v1.Document getDocument() {
if (documentBuilder_ == null) {
return document_ == null ? com.google.cloud.language.v1.Document.getDefaultInstance() : document_;
} else {
return documentBuilder_.getMessage();
}
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public Builder setDocument(com.google.cloud.language.v1.Document value) {
if (documentBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
document_ = value;
onChanged();
} else {
documentBuilder_.setMessage(value);
}
return this;
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public Builder setDocument(
com.google.cloud.language.v1.Document.Builder builderForValue) {
if (documentBuilder_ == null) {
document_ = builderForValue.build();
onChanged();
} else {
documentBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public Builder mergeDocument(com.google.cloud.language.v1.Document value) {
if (documentBuilder_ == null) {
if (document_ != null) {
document_ =
com.google.cloud.language.v1.Document.newBuilder(document_).mergeFrom(value).buildPartial();
} else {
document_ = value;
}
onChanged();
} else {
documentBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public Builder clearDocument() {
if (documentBuilder_ == null) {
document_ = null;
onChanged();
} else {
document_ = null;
documentBuilder_ = null;
}
return this;
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public com.google.cloud.language.v1.Document.Builder getDocumentBuilder() {
onChanged();
return getDocumentFieldBuilder().getBuilder();
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
public com.google.cloud.language.v1.DocumentOrBuilder getDocumentOrBuilder() {
if (documentBuilder_ != null) {
return documentBuilder_.getMessageOrBuilder();
} else {
return document_ == null ?
com.google.cloud.language.v1.Document.getDefaultInstance() : document_;
}
}
/**
*
* Input document. Currently, `analyzeSentiment` only supports English text
* ([Document.language][google.cloud.language.v1.Document.language]="EN").
*
*
* .google.cloud.language.v1.Document document = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.language.v1.Document, com.google.cloud.language.v1.Document.Builder, com.google.cloud.language.v1.DocumentOrBuilder>
getDocumentFieldBuilder() {
if (documentBuilder_ == null) {
documentBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.language.v1.Document, com.google.cloud.language.v1.Document.Builder, com.google.cloud.language.v1.DocumentOrBuilder>(
getDocument(),
getParentForChildren(),
isClean());
document_ = null;
}
return documentBuilder_;
}
private int encodingType_ = 0;
/**
*
* The encoding type used by the API to calculate sentence offsets.
*
*
* .google.cloud.language.v1.EncodingType encoding_type = 2;
*/
public int getEncodingTypeValue() {
return encodingType_;
}
/**
*
* The encoding type used by the API to calculate sentence offsets.
*
*
* .google.cloud.language.v1.EncodingType encoding_type = 2;
*/
public Builder setEncodingTypeValue(int value) {
encodingType_ = value;
onChanged();
return this;
}
/**
*
* The encoding type used by the API to calculate sentence offsets.
*
*
* .google.cloud.language.v1.EncodingType encoding_type = 2;
*/
public com.google.cloud.language.v1.EncodingType getEncodingType() {
com.google.cloud.language.v1.EncodingType result = com.google.cloud.language.v1.EncodingType.valueOf(encodingType_);
return result == null ? com.google.cloud.language.v1.EncodingType.UNRECOGNIZED : result;
}
/**
*
* The encoding type used by the API to calculate sentence offsets.
*
*
* .google.cloud.language.v1.EncodingType encoding_type = 2;
*/
public Builder setEncodingType(com.google.cloud.language.v1.EncodingType value) {
if (value == null) {
throw new NullPointerException();
}
encodingType_ = value.getNumber();
onChanged();
return this;
}
/**
*
* The encoding type used by the API to calculate sentence offsets.
*
*
* .google.cloud.language.v1.EncodingType encoding_type = 2;
*/
public Builder clearEncodingType() {
encodingType_ = 0;
onChanged();
return this;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
// @@protoc_insertion_point(builder_scope:google.cloud.language.v1.AnalyzeSentimentRequest)
}
// @@protoc_insertion_point(class_scope:google.cloud.language.v1.AnalyzeSentimentRequest)
private static final com.google.cloud.language.v1.AnalyzeSentimentRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.language.v1.AnalyzeSentimentRequest();
}
public static com.google.cloud.language.v1.AnalyzeSentimentRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public AnalyzeSentimentRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AnalyzeSentimentRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public com.google.cloud.language.v1.AnalyzeSentimentRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}