com.clarifai.grpc.api.AiAssistParameters Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
/**
*
* AiAssistParameters
*
*
* Protobuf type {@code clarifai.api.AiAssistParameters}
*/
public final class AiAssistParameters extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:clarifai.api.AiAssistParameters)
AiAssistParametersOrBuilder {
private static final long serialVersionUID = 0L;
// Use AiAssistParameters.newBuilder() to construct.
private AiAssistParameters(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AiAssistParameters() {
conceptRelationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new AiAssistParameters();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private AiAssistParameters(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 13: {
minThreshold_ = input.readFloat();
break;
}
case 21: {
maxThreshold_ = input.readFloat();
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
conceptRelationIds_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000001;
}
conceptRelationIds_.add(s);
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
conceptRelationIds_ = conceptRelationIds_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_AiAssistParameters_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_AiAssistParameters_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.AiAssistParameters.class, com.clarifai.grpc.api.AiAssistParameters.Builder.class);
}
public static final int MIN_THRESHOLD_FIELD_NUMBER = 1;
private float minThreshold_;
/**
*
* Min and max threshold values for approving annotations by default based on prediction score
*
*
* float min_threshold = 1;
* @return The minThreshold.
*/
@java.lang.Override
public float getMinThreshold() {
return minThreshold_;
}
public static final int MAX_THRESHOLD_FIELD_NUMBER = 2;
private float maxThreshold_;
/**
* float max_threshold = 2;
* @return The maxThreshold.
*/
@java.lang.Override
public float getMaxThreshold() {
return maxThreshold_;
}
public static final int CONCEPT_RELATION_IDS_FIELD_NUMBER = 3;
private com.google.protobuf.LazyStringList conceptRelationIds_;
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @return A list containing the conceptRelationIds.
*/
public com.google.protobuf.ProtocolStringList
getConceptRelationIdsList() {
return conceptRelationIds_;
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @return The count of conceptRelationIds.
*/
public int getConceptRelationIdsCount() {
return conceptRelationIds_.size();
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param index The index of the element to return.
* @return The conceptRelationIds at the given index.
*/
public java.lang.String getConceptRelationIds(int index) {
return conceptRelationIds_.get(index);
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param index The index of the value to return.
* @return The bytes of the conceptRelationIds at the given index.
*/
public com.google.protobuf.ByteString
getConceptRelationIdsBytes(int index) {
return conceptRelationIds_.getByteString(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (java.lang.Float.floatToRawIntBits(minThreshold_) != 0) {
output.writeFloat(1, minThreshold_);
}
if (java.lang.Float.floatToRawIntBits(maxThreshold_) != 0) {
output.writeFloat(2, maxThreshold_);
}
for (int i = 0; i < conceptRelationIds_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, conceptRelationIds_.getRaw(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (java.lang.Float.floatToRawIntBits(minThreshold_) != 0) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(1, minThreshold_);
}
if (java.lang.Float.floatToRawIntBits(maxThreshold_) != 0) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(2, maxThreshold_);
}
{
int dataSize = 0;
for (int i = 0; i < conceptRelationIds_.size(); i++) {
dataSize += computeStringSizeNoTag(conceptRelationIds_.getRaw(i));
}
size += dataSize;
size += 1 * getConceptRelationIdsList().size();
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.clarifai.grpc.api.AiAssistParameters)) {
return super.equals(obj);
}
com.clarifai.grpc.api.AiAssistParameters other = (com.clarifai.grpc.api.AiAssistParameters) obj;
if (java.lang.Float.floatToIntBits(getMinThreshold())
!= java.lang.Float.floatToIntBits(
other.getMinThreshold())) return false;
if (java.lang.Float.floatToIntBits(getMaxThreshold())
!= java.lang.Float.floatToIntBits(
other.getMaxThreshold())) return false;
if (!getConceptRelationIdsList()
.equals(other.getConceptRelationIdsList())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + MIN_THRESHOLD_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getMinThreshold());
hash = (37 * hash) + MAX_THRESHOLD_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getMaxThreshold());
if (getConceptRelationIdsCount() > 0) {
hash = (37 * hash) + CONCEPT_RELATION_IDS_FIELD_NUMBER;
hash = (53 * hash) + getConceptRelationIdsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.AiAssistParameters 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.clarifai.grpc.api.AiAssistParameters parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.AiAssistParameters 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.clarifai.grpc.api.AiAssistParameters parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.AiAssistParameters parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.clarifai.grpc.api.AiAssistParameters prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
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;
}
/**
*
* AiAssistParameters
*
*
* Protobuf type {@code clarifai.api.AiAssistParameters}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:clarifai.api.AiAssistParameters)
com.clarifai.grpc.api.AiAssistParametersOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_AiAssistParameters_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_AiAssistParameters_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.AiAssistParameters.class, com.clarifai.grpc.api.AiAssistParameters.Builder.class);
}
// Construct using com.clarifai.grpc.api.AiAssistParameters.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
minThreshold_ = 0F;
maxThreshold_ = 0F;
conceptRelationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_AiAssistParameters_descriptor;
}
@java.lang.Override
public com.clarifai.grpc.api.AiAssistParameters getDefaultInstanceForType() {
return com.clarifai.grpc.api.AiAssistParameters.getDefaultInstance();
}
@java.lang.Override
public com.clarifai.grpc.api.AiAssistParameters build() {
com.clarifai.grpc.api.AiAssistParameters result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.clarifai.grpc.api.AiAssistParameters buildPartial() {
com.clarifai.grpc.api.AiAssistParameters result = new com.clarifai.grpc.api.AiAssistParameters(this);
int from_bitField0_ = bitField0_;
result.minThreshold_ = minThreshold_;
result.maxThreshold_ = maxThreshold_;
if (((bitField0_ & 0x00000001) != 0)) {
conceptRelationIds_ = conceptRelationIds_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.conceptRelationIds_ = conceptRelationIds_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.clarifai.grpc.api.AiAssistParameters) {
return mergeFrom((com.clarifai.grpc.api.AiAssistParameters)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.clarifai.grpc.api.AiAssistParameters other) {
if (other == com.clarifai.grpc.api.AiAssistParameters.getDefaultInstance()) return this;
if (other.getMinThreshold() != 0F) {
setMinThreshold(other.getMinThreshold());
}
if (other.getMaxThreshold() != 0F) {
setMaxThreshold(other.getMaxThreshold());
}
if (!other.conceptRelationIds_.isEmpty()) {
if (conceptRelationIds_.isEmpty()) {
conceptRelationIds_ = other.conceptRelationIds_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureConceptRelationIdsIsMutable();
conceptRelationIds_.addAll(other.conceptRelationIds_);
}
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.clarifai.grpc.api.AiAssistParameters parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.clarifai.grpc.api.AiAssistParameters) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private float minThreshold_ ;
/**
*
* Min and max threshold values for approving annotations by default based on prediction score
*
*
* float min_threshold = 1;
* @return The minThreshold.
*/
@java.lang.Override
public float getMinThreshold() {
return minThreshold_;
}
/**
*
* Min and max threshold values for approving annotations by default based on prediction score
*
*
* float min_threshold = 1;
* @param value The minThreshold to set.
* @return This builder for chaining.
*/
public Builder setMinThreshold(float value) {
minThreshold_ = value;
onChanged();
return this;
}
/**
*
* Min and max threshold values for approving annotations by default based on prediction score
*
*
* float min_threshold = 1;
* @return This builder for chaining.
*/
public Builder clearMinThreshold() {
minThreshold_ = 0F;
onChanged();
return this;
}
private float maxThreshold_ ;
/**
* float max_threshold = 2;
* @return The maxThreshold.
*/
@java.lang.Override
public float getMaxThreshold() {
return maxThreshold_;
}
/**
* float max_threshold = 2;
* @param value The maxThreshold to set.
* @return This builder for chaining.
*/
public Builder setMaxThreshold(float value) {
maxThreshold_ = value;
onChanged();
return this;
}
/**
* float max_threshold = 2;
* @return This builder for chaining.
*/
public Builder clearMaxThreshold() {
maxThreshold_ = 0F;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList conceptRelationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureConceptRelationIdsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
conceptRelationIds_ = new com.google.protobuf.LazyStringArrayList(conceptRelationIds_);
bitField0_ |= 0x00000001;
}
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @return A list containing the conceptRelationIds.
*/
public com.google.protobuf.ProtocolStringList
getConceptRelationIdsList() {
return conceptRelationIds_.getUnmodifiableView();
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @return The count of conceptRelationIds.
*/
public int getConceptRelationIdsCount() {
return conceptRelationIds_.size();
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param index The index of the element to return.
* @return The conceptRelationIds at the given index.
*/
public java.lang.String getConceptRelationIds(int index) {
return conceptRelationIds_.get(index);
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param index The index of the value to return.
* @return The bytes of the conceptRelationIds at the given index.
*/
public com.google.protobuf.ByteString
getConceptRelationIdsBytes(int index) {
return conceptRelationIds_.getByteString(index);
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param index The index to set the value at.
* @param value The conceptRelationIds to set.
* @return This builder for chaining.
*/
public Builder setConceptRelationIds(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureConceptRelationIdsIsMutable();
conceptRelationIds_.set(index, value);
onChanged();
return this;
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param value The conceptRelationIds to add.
* @return This builder for chaining.
*/
public Builder addConceptRelationIds(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureConceptRelationIdsIsMutable();
conceptRelationIds_.add(value);
onChanged();
return this;
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param values The conceptRelationIds to add.
* @return This builder for chaining.
*/
public Builder addAllConceptRelationIds(
java.lang.Iterable values) {
ensureConceptRelationIdsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, conceptRelationIds_);
onChanged();
return this;
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @return This builder for chaining.
*/
public Builder clearConceptRelationIds() {
conceptRelationIds_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* ids of concept relations. Used in AI assist workflow
*
*
* repeated string concept_relation_ids = 3;
* @param value The bytes of the conceptRelationIds to add.
* @return This builder for chaining.
*/
public Builder addConceptRelationIdsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureConceptRelationIdsIsMutable();
conceptRelationIds_.add(value);
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:clarifai.api.AiAssistParameters)
}
// @@protoc_insertion_point(class_scope:clarifai.api.AiAssistParameters)
private static final com.clarifai.grpc.api.AiAssistParameters DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.clarifai.grpc.api.AiAssistParameters();
}
public static com.clarifai.grpc.api.AiAssistParameters getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AiAssistParameters parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AiAssistParameters(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.clarifai.grpc.api.AiAssistParameters getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}