com.clarifai.grpc.api.PutUploadContentPartsRequest Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
/**
*
* Upload a part of a multipart upload.
* Behaviour on completion depends on the endpoint that was used to initiate the upload.
*
*
* Protobuf type {@code clarifai.api.PutUploadContentPartsRequest}
*/
public final class PutUploadContentPartsRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:clarifai.api.PutUploadContentPartsRequest)
PutUploadContentPartsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use PutUploadContentPartsRequest.newBuilder() to construct.
private PutUploadContentPartsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PutUploadContentPartsRequest() {
uploadId_ = "";
contentParts_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new PutUploadContentPartsRequest();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PutUploadContentPartsRequest(
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 10: {
com.clarifai.grpc.api.UserAppIDSet.Builder subBuilder = null;
if (userAppId_ != null) {
subBuilder = userAppId_.toBuilder();
}
userAppId_ = input.readMessage(com.clarifai.grpc.api.UserAppIDSet.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(userAppId_);
userAppId_ = subBuilder.buildPartial();
}
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
uploadId_ = s;
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
contentParts_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
contentParts_.add(
input.readMessage(com.clarifai.grpc.api.UploadContentPart.parser(), extensionRegistry));
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)) {
contentParts_ = java.util.Collections.unmodifiableList(contentParts_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PutUploadContentPartsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PutUploadContentPartsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.PutUploadContentPartsRequest.class, com.clarifai.grpc.api.PutUploadContentPartsRequest.Builder.class);
}
public static final int USER_APP_ID_FIELD_NUMBER = 1;
private com.clarifai.grpc.api.UserAppIDSet userAppId_;
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
@java.lang.Override
public boolean hasUserAppId() {
return userAppId_ != null;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
@java.lang.Override
public com.clarifai.grpc.api.UserAppIDSet getUserAppId() {
return userAppId_ == null ? com.clarifai.grpc.api.UserAppIDSet.getDefaultInstance() : userAppId_;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
@java.lang.Override
public com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder() {
return getUserAppId();
}
public static final int UPLOAD_ID_FIELD_NUMBER = 2;
private volatile java.lang.Object uploadId_;
/**
* string upload_id = 2;
* @return The uploadId.
*/
@java.lang.Override
public java.lang.String getUploadId() {
java.lang.Object ref = uploadId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
uploadId_ = s;
return s;
}
}
/**
* string upload_id = 2;
* @return The bytes for uploadId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getUploadIdBytes() {
java.lang.Object ref = uploadId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
uploadId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int CONTENT_PARTS_FIELD_NUMBER = 3;
private java.util.List contentParts_;
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
@java.lang.Override
public java.util.List getContentPartsList() {
return contentParts_;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
@java.lang.Override
public java.util.List extends com.clarifai.grpc.api.UploadContentPartOrBuilder>
getContentPartsOrBuilderList() {
return contentParts_;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
@java.lang.Override
public int getContentPartsCount() {
return contentParts_.size();
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
@java.lang.Override
public com.clarifai.grpc.api.UploadContentPart getContentParts(int index) {
return contentParts_.get(index);
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
@java.lang.Override
public com.clarifai.grpc.api.UploadContentPartOrBuilder getContentPartsOrBuilder(
int index) {
return contentParts_.get(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 (userAppId_ != null) {
output.writeMessage(1, getUserAppId());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(uploadId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, uploadId_);
}
for (int i = 0; i < contentParts_.size(); i++) {
output.writeMessage(3, contentParts_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (userAppId_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getUserAppId());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(uploadId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, uploadId_);
}
for (int i = 0; i < contentParts_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, contentParts_.get(i));
}
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.PutUploadContentPartsRequest)) {
return super.equals(obj);
}
com.clarifai.grpc.api.PutUploadContentPartsRequest other = (com.clarifai.grpc.api.PutUploadContentPartsRequest) obj;
if (hasUserAppId() != other.hasUserAppId()) return false;
if (hasUserAppId()) {
if (!getUserAppId()
.equals(other.getUserAppId())) return false;
}
if (!getUploadId()
.equals(other.getUploadId())) return false;
if (!getContentPartsList()
.equals(other.getContentPartsList())) 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();
if (hasUserAppId()) {
hash = (37 * hash) + USER_APP_ID_FIELD_NUMBER;
hash = (53 * hash) + getUserAppId().hashCode();
}
hash = (37 * hash) + UPLOAD_ID_FIELD_NUMBER;
hash = (53 * hash) + getUploadId().hashCode();
if (getContentPartsCount() > 0) {
hash = (37 * hash) + CONTENT_PARTS_FIELD_NUMBER;
hash = (53 * hash) + getContentPartsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest 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.PutUploadContentPartsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest 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.PutUploadContentPartsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest 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.PutUploadContentPartsRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest 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.PutUploadContentPartsRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest 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.PutUploadContentPartsRequest 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;
}
/**
*
* Upload a part of a multipart upload.
* Behaviour on completion depends on the endpoint that was used to initiate the upload.
*
*
* Protobuf type {@code clarifai.api.PutUploadContentPartsRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:clarifai.api.PutUploadContentPartsRequest)
com.clarifai.grpc.api.PutUploadContentPartsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PutUploadContentPartsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PutUploadContentPartsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clarifai.grpc.api.PutUploadContentPartsRequest.class, com.clarifai.grpc.api.PutUploadContentPartsRequest.Builder.class);
}
// Construct using com.clarifai.grpc.api.PutUploadContentPartsRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getContentPartsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (userAppIdBuilder_ == null) {
userAppId_ = null;
} else {
userAppId_ = null;
userAppIdBuilder_ = null;
}
uploadId_ = "";
if (contentPartsBuilder_ == null) {
contentParts_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
contentPartsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.clarifai.grpc.api.Service.internal_static_clarifai_api_PutUploadContentPartsRequest_descriptor;
}
@java.lang.Override
public com.clarifai.grpc.api.PutUploadContentPartsRequest getDefaultInstanceForType() {
return com.clarifai.grpc.api.PutUploadContentPartsRequest.getDefaultInstance();
}
@java.lang.Override
public com.clarifai.grpc.api.PutUploadContentPartsRequest build() {
com.clarifai.grpc.api.PutUploadContentPartsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.clarifai.grpc.api.PutUploadContentPartsRequest buildPartial() {
com.clarifai.grpc.api.PutUploadContentPartsRequest result = new com.clarifai.grpc.api.PutUploadContentPartsRequest(this);
int from_bitField0_ = bitField0_;
if (userAppIdBuilder_ == null) {
result.userAppId_ = userAppId_;
} else {
result.userAppId_ = userAppIdBuilder_.build();
}
result.uploadId_ = uploadId_;
if (contentPartsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
contentParts_ = java.util.Collections.unmodifiableList(contentParts_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.contentParts_ = contentParts_;
} else {
result.contentParts_ = contentPartsBuilder_.build();
}
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.PutUploadContentPartsRequest) {
return mergeFrom((com.clarifai.grpc.api.PutUploadContentPartsRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.clarifai.grpc.api.PutUploadContentPartsRequest other) {
if (other == com.clarifai.grpc.api.PutUploadContentPartsRequest.getDefaultInstance()) return this;
if (other.hasUserAppId()) {
mergeUserAppId(other.getUserAppId());
}
if (!other.getUploadId().isEmpty()) {
uploadId_ = other.uploadId_;
onChanged();
}
if (contentPartsBuilder_ == null) {
if (!other.contentParts_.isEmpty()) {
if (contentParts_.isEmpty()) {
contentParts_ = other.contentParts_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureContentPartsIsMutable();
contentParts_.addAll(other.contentParts_);
}
onChanged();
}
} else {
if (!other.contentParts_.isEmpty()) {
if (contentPartsBuilder_.isEmpty()) {
contentPartsBuilder_.dispose();
contentPartsBuilder_ = null;
contentParts_ = other.contentParts_;
bitField0_ = (bitField0_ & ~0x00000001);
contentPartsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getContentPartsFieldBuilder() : null;
} else {
contentPartsBuilder_.addAllMessages(other.contentParts_);
}
}
}
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.PutUploadContentPartsRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.clarifai.grpc.api.PutUploadContentPartsRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.clarifai.grpc.api.UserAppIDSet userAppId_;
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.UserAppIDSet, com.clarifai.grpc.api.UserAppIDSet.Builder, com.clarifai.grpc.api.UserAppIDSetOrBuilder> userAppIdBuilder_;
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return Whether the userAppId field is set.
*/
public boolean hasUserAppId() {
return userAppIdBuilder_ != null || userAppId_ != null;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
* @return The userAppId.
*/
public com.clarifai.grpc.api.UserAppIDSet getUserAppId() {
if (userAppIdBuilder_ == null) {
return userAppId_ == null ? com.clarifai.grpc.api.UserAppIDSet.getDefaultInstance() : userAppId_;
} else {
return userAppIdBuilder_.getMessage();
}
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder setUserAppId(com.clarifai.grpc.api.UserAppIDSet value) {
if (userAppIdBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
userAppId_ = value;
onChanged();
} else {
userAppIdBuilder_.setMessage(value);
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder setUserAppId(
com.clarifai.grpc.api.UserAppIDSet.Builder builderForValue) {
if (userAppIdBuilder_ == null) {
userAppId_ = builderForValue.build();
onChanged();
} else {
userAppIdBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder mergeUserAppId(com.clarifai.grpc.api.UserAppIDSet value) {
if (userAppIdBuilder_ == null) {
if (userAppId_ != null) {
userAppId_ =
com.clarifai.grpc.api.UserAppIDSet.newBuilder(userAppId_).mergeFrom(value).buildPartial();
} else {
userAppId_ = value;
}
onChanged();
} else {
userAppIdBuilder_.mergeFrom(value);
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public Builder clearUserAppId() {
if (userAppIdBuilder_ == null) {
userAppId_ = null;
onChanged();
} else {
userAppId_ = null;
userAppIdBuilder_ = null;
}
return this;
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public com.clarifai.grpc.api.UserAppIDSet.Builder getUserAppIdBuilder() {
onChanged();
return getUserAppIdFieldBuilder().getBuilder();
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
public com.clarifai.grpc.api.UserAppIDSetOrBuilder getUserAppIdOrBuilder() {
if (userAppIdBuilder_ != null) {
return userAppIdBuilder_.getMessageOrBuilder();
} else {
return userAppId_ == null ?
com.clarifai.grpc.api.UserAppIDSet.getDefaultInstance() : userAppId_;
}
}
/**
* .clarifai.api.UserAppIDSet user_app_id = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.UserAppIDSet, com.clarifai.grpc.api.UserAppIDSet.Builder, com.clarifai.grpc.api.UserAppIDSetOrBuilder>
getUserAppIdFieldBuilder() {
if (userAppIdBuilder_ == null) {
userAppIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.clarifai.grpc.api.UserAppIDSet, com.clarifai.grpc.api.UserAppIDSet.Builder, com.clarifai.grpc.api.UserAppIDSetOrBuilder>(
getUserAppId(),
getParentForChildren(),
isClean());
userAppId_ = null;
}
return userAppIdBuilder_;
}
private java.lang.Object uploadId_ = "";
/**
* string upload_id = 2;
* @return The uploadId.
*/
public java.lang.String getUploadId() {
java.lang.Object ref = uploadId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
uploadId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string upload_id = 2;
* @return The bytes for uploadId.
*/
public com.google.protobuf.ByteString
getUploadIdBytes() {
java.lang.Object ref = uploadId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
uploadId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string upload_id = 2;
* @param value The uploadId to set.
* @return This builder for chaining.
*/
public Builder setUploadId(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
uploadId_ = value;
onChanged();
return this;
}
/**
* string upload_id = 2;
* @return This builder for chaining.
*/
public Builder clearUploadId() {
uploadId_ = getDefaultInstance().getUploadId();
onChanged();
return this;
}
/**
* string upload_id = 2;
* @param value The bytes for uploadId to set.
* @return This builder for chaining.
*/
public Builder setUploadIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
uploadId_ = value;
onChanged();
return this;
}
private java.util.List contentParts_ =
java.util.Collections.emptyList();
private void ensureContentPartsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
contentParts_ = new java.util.ArrayList(contentParts_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.clarifai.grpc.api.UploadContentPart, com.clarifai.grpc.api.UploadContentPart.Builder, com.clarifai.grpc.api.UploadContentPartOrBuilder> contentPartsBuilder_;
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public java.util.List getContentPartsList() {
if (contentPartsBuilder_ == null) {
return java.util.Collections.unmodifiableList(contentParts_);
} else {
return contentPartsBuilder_.getMessageList();
}
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public int getContentPartsCount() {
if (contentPartsBuilder_ == null) {
return contentParts_.size();
} else {
return contentPartsBuilder_.getCount();
}
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public com.clarifai.grpc.api.UploadContentPart getContentParts(int index) {
if (contentPartsBuilder_ == null) {
return contentParts_.get(index);
} else {
return contentPartsBuilder_.getMessage(index);
}
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder setContentParts(
int index, com.clarifai.grpc.api.UploadContentPart value) {
if (contentPartsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContentPartsIsMutable();
contentParts_.set(index, value);
onChanged();
} else {
contentPartsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder setContentParts(
int index, com.clarifai.grpc.api.UploadContentPart.Builder builderForValue) {
if (contentPartsBuilder_ == null) {
ensureContentPartsIsMutable();
contentParts_.set(index, builderForValue.build());
onChanged();
} else {
contentPartsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder addContentParts(com.clarifai.grpc.api.UploadContentPart value) {
if (contentPartsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContentPartsIsMutable();
contentParts_.add(value);
onChanged();
} else {
contentPartsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder addContentParts(
int index, com.clarifai.grpc.api.UploadContentPart value) {
if (contentPartsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureContentPartsIsMutable();
contentParts_.add(index, value);
onChanged();
} else {
contentPartsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder addContentParts(
com.clarifai.grpc.api.UploadContentPart.Builder builderForValue) {
if (contentPartsBuilder_ == null) {
ensureContentPartsIsMutable();
contentParts_.add(builderForValue.build());
onChanged();
} else {
contentPartsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder addContentParts(
int index, com.clarifai.grpc.api.UploadContentPart.Builder builderForValue) {
if (contentPartsBuilder_ == null) {
ensureContentPartsIsMutable();
contentParts_.add(index, builderForValue.build());
onChanged();
} else {
contentPartsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder addAllContentParts(
java.lang.Iterable extends com.clarifai.grpc.api.UploadContentPart> values) {
if (contentPartsBuilder_ == null) {
ensureContentPartsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, contentParts_);
onChanged();
} else {
contentPartsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder clearContentParts() {
if (contentPartsBuilder_ == null) {
contentParts_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
contentPartsBuilder_.clear();
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public Builder removeContentParts(int index) {
if (contentPartsBuilder_ == null) {
ensureContentPartsIsMutable();
contentParts_.remove(index);
onChanged();
} else {
contentPartsBuilder_.remove(index);
}
return this;
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public com.clarifai.grpc.api.UploadContentPart.Builder getContentPartsBuilder(
int index) {
return getContentPartsFieldBuilder().getBuilder(index);
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public com.clarifai.grpc.api.UploadContentPartOrBuilder getContentPartsOrBuilder(
int index) {
if (contentPartsBuilder_ == null) {
return contentParts_.get(index); } else {
return contentPartsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public java.util.List extends com.clarifai.grpc.api.UploadContentPartOrBuilder>
getContentPartsOrBuilderList() {
if (contentPartsBuilder_ != null) {
return contentPartsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(contentParts_);
}
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public com.clarifai.grpc.api.UploadContentPart.Builder addContentPartsBuilder() {
return getContentPartsFieldBuilder().addBuilder(
com.clarifai.grpc.api.UploadContentPart.getDefaultInstance());
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public com.clarifai.grpc.api.UploadContentPart.Builder addContentPartsBuilder(
int index) {
return getContentPartsFieldBuilder().addBuilder(
index, com.clarifai.grpc.api.UploadContentPart.getDefaultInstance());
}
/**
* repeated .clarifai.api.UploadContentPart content_parts = 3;
*/
public java.util.List
getContentPartsBuilderList() {
return getContentPartsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.clarifai.grpc.api.UploadContentPart, com.clarifai.grpc.api.UploadContentPart.Builder, com.clarifai.grpc.api.UploadContentPartOrBuilder>
getContentPartsFieldBuilder() {
if (contentPartsBuilder_ == null) {
contentPartsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.clarifai.grpc.api.UploadContentPart, com.clarifai.grpc.api.UploadContentPart.Builder, com.clarifai.grpc.api.UploadContentPartOrBuilder>(
contentParts_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
contentParts_ = null;
}
return contentPartsBuilder_;
}
@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.PutUploadContentPartsRequest)
}
// @@protoc_insertion_point(class_scope:clarifai.api.PutUploadContentPartsRequest)
private static final com.clarifai.grpc.api.PutUploadContentPartsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.clarifai.grpc.api.PutUploadContentPartsRequest();
}
public static com.clarifai.grpc.api.PutUploadContentPartsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PutUploadContentPartsRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PutUploadContentPartsRequest(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.PutUploadContentPartsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}