All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clarifai.grpc.api.ListTasksRequest 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;

/**
 * 
 * Request to list multiple tasks.
 * 
* * Protobuf type {@code clarifai.api.ListTasksRequest} */ public final class ListTasksRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:clarifai.api.ListTasksRequest) ListTasksRequestOrBuilder { private static final long serialVersionUID = 0L; // Use ListTasksRequest.newBuilder() to construct. private ListTasksRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ListTasksRequest() { workerUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; reviewUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; labelOrderIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; additionalFields_ = com.google.protobuf.LazyStringArrayList.EMPTY; ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ListTasksRequest(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private ListTasksRequest( 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 16: { page_ = input.readUInt32(); break; } case 24: { perPage_ = input.readUInt32(); break; } case 34: { java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000001) != 0)) { workerUserIds_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000001; } workerUserIds_.add(s); break; } case 42: { java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000002) != 0)) { reviewUserIds_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000002; } reviewUserIds_.add(s); break; } case 48: { includingLabelOrderTasks_ = input.readBool(); break; } case 58: { java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000008) != 0)) { additionalFields_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000008; } additionalFields_.add(s); break; } case 66: { java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000004) != 0)) { labelOrderIds_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000004; } labelOrderIds_.add(s); break; } case 74: { java.lang.String s = input.readStringRequireUtf8(); if (!((mutable_bitField0_ & 0x00000010) != 0)) { ids_ = new com.google.protobuf.LazyStringArrayList(); mutable_bitField0_ |= 0x00000010; } ids_.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)) { workerUserIds_ = workerUserIds_.getUnmodifiableView(); } if (((mutable_bitField0_ & 0x00000002) != 0)) { reviewUserIds_ = reviewUserIds_.getUnmodifiableView(); } if (((mutable_bitField0_ & 0x00000008) != 0)) { additionalFields_ = additionalFields_.getUnmodifiableView(); } if (((mutable_bitField0_ & 0x00000004) != 0)) { labelOrderIds_ = labelOrderIds_.getUnmodifiableView(); } if (((mutable_bitField0_ & 0x00000010) != 0)) { ids_ = ids_.getUnmodifiableView(); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.clarifai.grpc.api.Service.internal_static_clarifai_api_ListTasksRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.clarifai.grpc.api.Service.internal_static_clarifai_api_ListTasksRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.clarifai.grpc.api.ListTasksRequest.class, com.clarifai.grpc.api.ListTasksRequest.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 PAGE_FIELD_NUMBER = 2; private int page_; /** *
   * (optional URL parameter) The page number. Pagination is used to split the results into chunks.
   * Defaults to 1.
   * 
* * uint32 page = 2; * @return The page. */ @java.lang.Override public int getPage() { return page_; } public static final int PER_PAGE_FIELD_NUMBER = 3; private int perPage_; /** *
   * (optional URL parameter) The number of results that will be contained in each page. Defaults
   * to 128.
   * 
* * uint32 per_page = 3; * @return The perPage. */ @java.lang.Override public int getPerPage() { return perPage_; } public static final int WORKER_USER_IDS_FIELD_NUMBER = 4; private com.google.protobuf.LazyStringList workerUserIds_; /** *
   * Get tasks that have ANY user from this list assigned as worker.
   * 
* * repeated string worker_user_ids = 4; * @return A list containing the workerUserIds. */ public com.google.protobuf.ProtocolStringList getWorkerUserIdsList() { return workerUserIds_; } /** *
   * Get tasks that have ANY user from this list assigned as worker.
   * 
* * repeated string worker_user_ids = 4; * @return The count of workerUserIds. */ public int getWorkerUserIdsCount() { return workerUserIds_.size(); } /** *
   * Get tasks that have ANY user from this list assigned as worker.
   * 
* * repeated string worker_user_ids = 4; * @param index The index of the element to return. * @return The workerUserIds at the given index. */ public java.lang.String getWorkerUserIds(int index) { return workerUserIds_.get(index); } /** *
   * Get tasks that have ANY user from this list assigned as worker.
   * 
* * repeated string worker_user_ids = 4; * @param index The index of the value to return. * @return The bytes of the workerUserIds at the given index. */ public com.google.protobuf.ByteString getWorkerUserIdsBytes(int index) { return workerUserIds_.getByteString(index); } public static final int REVIEW_USER_IDS_FIELD_NUMBER = 5; private com.google.protobuf.LazyStringList reviewUserIds_; /** *
   * Get tasks that have ANY user from this list assigned as reviewer.
   * 
* * repeated string review_user_ids = 5; * @return A list containing the reviewUserIds. */ public com.google.protobuf.ProtocolStringList getReviewUserIdsList() { return reviewUserIds_; } /** *
   * Get tasks that have ANY user from this list assigned as reviewer.
   * 
* * repeated string review_user_ids = 5; * @return The count of reviewUserIds. */ public int getReviewUserIdsCount() { return reviewUserIds_.size(); } /** *
   * Get tasks that have ANY user from this list assigned as reviewer.
   * 
* * repeated string review_user_ids = 5; * @param index The index of the element to return. * @return The reviewUserIds at the given index. */ public java.lang.String getReviewUserIds(int index) { return reviewUserIds_.get(index); } /** *
   * Get tasks that have ANY user from this list assigned as reviewer.
   * 
* * repeated string review_user_ids = 5; * @param index The index of the value to return. * @return The bytes of the reviewUserIds at the given index. */ public com.google.protobuf.ByteString getReviewUserIdsBytes(int index) { return reviewUserIds_.getByteString(index); } public static final int LABEL_ORDER_IDS_FIELD_NUMBER = 8; private com.google.protobuf.LazyStringList labelOrderIds_; /** *
   * Get tasks that are associated to ANY label order from this list.
   * 
* * repeated string label_order_ids = 8; * @return A list containing the labelOrderIds. */ public com.google.protobuf.ProtocolStringList getLabelOrderIdsList() { return labelOrderIds_; } /** *
   * Get tasks that are associated to ANY label order from this list.
   * 
* * repeated string label_order_ids = 8; * @return The count of labelOrderIds. */ public int getLabelOrderIdsCount() { return labelOrderIds_.size(); } /** *
   * Get tasks that are associated to ANY label order from this list.
   * 
* * repeated string label_order_ids = 8; * @param index The index of the element to return. * @return The labelOrderIds at the given index. */ public java.lang.String getLabelOrderIds(int index) { return labelOrderIds_.get(index); } /** *
   * Get tasks that are associated to ANY label order from this list.
   * 
* * repeated string label_order_ids = 8; * @param index The index of the value to return. * @return The bytes of the labelOrderIds at the given index. */ public com.google.protobuf.ByteString getLabelOrderIdsBytes(int index) { return labelOrderIds_.getByteString(index); } public static final int INCLUDING_LABEL_ORDER_TASKS_FIELD_NUMBER = 6; private boolean includingLabelOrderTasks_; /** *
   * Get label order tasks as well
   * It is automatically set to true if label_order_ids is set.
   * 
* * bool including_label_order_tasks = 6; * @return The includingLabelOrderTasks. */ @java.lang.Override public boolean getIncludingLabelOrderTasks() { return includingLabelOrderTasks_; } public static final int ADDITIONAL_FIELDS_FIELD_NUMBER = 7; private com.google.protobuf.LazyStringList additionalFields_; /** *
   * (optional URL parameter) List of additional fields to be included in the response.
   * Currently supported additional fields:
   * - all
   * - worker.users
   * - review.users
   * - metrics.input_source.inputs_count_estimated
   * - metrics.work.inputs_count_estimated
   * - metrics.work.inputs_percent_estimated
   * - metrics.review.inputs_count_estimated
   * - metrics.review.inputs_percent_estimated
   * 
* * repeated string additional_fields = 7; * @return A list containing the additionalFields. */ public com.google.protobuf.ProtocolStringList getAdditionalFieldsList() { return additionalFields_; } /** *
   * (optional URL parameter) List of additional fields to be included in the response.
   * Currently supported additional fields:
   * - all
   * - worker.users
   * - review.users
   * - metrics.input_source.inputs_count_estimated
   * - metrics.work.inputs_count_estimated
   * - metrics.work.inputs_percent_estimated
   * - metrics.review.inputs_count_estimated
   * - metrics.review.inputs_percent_estimated
   * 
* * repeated string additional_fields = 7; * @return The count of additionalFields. */ public int getAdditionalFieldsCount() { return additionalFields_.size(); } /** *
   * (optional URL parameter) List of additional fields to be included in the response.
   * Currently supported additional fields:
   * - all
   * - worker.users
   * - review.users
   * - metrics.input_source.inputs_count_estimated
   * - metrics.work.inputs_count_estimated
   * - metrics.work.inputs_percent_estimated
   * - metrics.review.inputs_count_estimated
   * - metrics.review.inputs_percent_estimated
   * 
* * repeated string additional_fields = 7; * @param index The index of the element to return. * @return The additionalFields at the given index. */ public java.lang.String getAdditionalFields(int index) { return additionalFields_.get(index); } /** *
   * (optional URL parameter) List of additional fields to be included in the response.
   * Currently supported additional fields:
   * - all
   * - worker.users
   * - review.users
   * - metrics.input_source.inputs_count_estimated
   * - metrics.work.inputs_count_estimated
   * - metrics.work.inputs_percent_estimated
   * - metrics.review.inputs_count_estimated
   * - metrics.review.inputs_percent_estimated
   * 
* * repeated string additional_fields = 7; * @param index The index of the value to return. * @return The bytes of the additionalFields at the given index. */ public com.google.protobuf.ByteString getAdditionalFieldsBytes(int index) { return additionalFields_.getByteString(index); } public static final int IDS_FIELD_NUMBER = 9; private com.google.protobuf.LazyStringList ids_; /** *
   * (optional) task IDs to filter on
   * 
* * repeated string ids = 9; * @return A list containing the ids. */ public com.google.protobuf.ProtocolStringList getIdsList() { return ids_; } /** *
   * (optional) task IDs to filter on
   * 
* * repeated string ids = 9; * @return The count of ids. */ public int getIdsCount() { return ids_.size(); } /** *
   * (optional) task IDs to filter on
   * 
* * repeated string ids = 9; * @param index The index of the element to return. * @return The ids at the given index. */ public java.lang.String getIds(int index) { return ids_.get(index); } /** *
   * (optional) task IDs to filter on
   * 
* * repeated string ids = 9; * @param index The index of the value to return. * @return The bytes of the ids at the given index. */ public com.google.protobuf.ByteString getIdsBytes(int index) { return ids_.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 (userAppId_ != null) { output.writeMessage(1, getUserAppId()); } if (page_ != 0) { output.writeUInt32(2, page_); } if (perPage_ != 0) { output.writeUInt32(3, perPage_); } for (int i = 0; i < workerUserIds_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, workerUserIds_.getRaw(i)); } for (int i = 0; i < reviewUserIds_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, reviewUserIds_.getRaw(i)); } if (includingLabelOrderTasks_ != false) { output.writeBool(6, includingLabelOrderTasks_); } for (int i = 0; i < additionalFields_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 7, additionalFields_.getRaw(i)); } for (int i = 0; i < labelOrderIds_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 8, labelOrderIds_.getRaw(i)); } for (int i = 0; i < ids_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 9, ids_.getRaw(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 (page_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(2, page_); } if (perPage_ != 0) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(3, perPage_); } { int dataSize = 0; for (int i = 0; i < workerUserIds_.size(); i++) { dataSize += computeStringSizeNoTag(workerUserIds_.getRaw(i)); } size += dataSize; size += 1 * getWorkerUserIdsList().size(); } { int dataSize = 0; for (int i = 0; i < reviewUserIds_.size(); i++) { dataSize += computeStringSizeNoTag(reviewUserIds_.getRaw(i)); } size += dataSize; size += 1 * getReviewUserIdsList().size(); } if (includingLabelOrderTasks_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(6, includingLabelOrderTasks_); } { int dataSize = 0; for (int i = 0; i < additionalFields_.size(); i++) { dataSize += computeStringSizeNoTag(additionalFields_.getRaw(i)); } size += dataSize; size += 1 * getAdditionalFieldsList().size(); } { int dataSize = 0; for (int i = 0; i < labelOrderIds_.size(); i++) { dataSize += computeStringSizeNoTag(labelOrderIds_.getRaw(i)); } size += dataSize; size += 1 * getLabelOrderIdsList().size(); } { int dataSize = 0; for (int i = 0; i < ids_.size(); i++) { dataSize += computeStringSizeNoTag(ids_.getRaw(i)); } size += dataSize; size += 1 * getIdsList().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.ListTasksRequest)) { return super.equals(obj); } com.clarifai.grpc.api.ListTasksRequest other = (com.clarifai.grpc.api.ListTasksRequest) obj; if (hasUserAppId() != other.hasUserAppId()) return false; if (hasUserAppId()) { if (!getUserAppId() .equals(other.getUserAppId())) return false; } if (getPage() != other.getPage()) return false; if (getPerPage() != other.getPerPage()) return false; if (!getWorkerUserIdsList() .equals(other.getWorkerUserIdsList())) return false; if (!getReviewUserIdsList() .equals(other.getReviewUserIdsList())) return false; if (!getLabelOrderIdsList() .equals(other.getLabelOrderIdsList())) return false; if (getIncludingLabelOrderTasks() != other.getIncludingLabelOrderTasks()) return false; if (!getAdditionalFieldsList() .equals(other.getAdditionalFieldsList())) return false; if (!getIdsList() .equals(other.getIdsList())) 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) + PAGE_FIELD_NUMBER; hash = (53 * hash) + getPage(); hash = (37 * hash) + PER_PAGE_FIELD_NUMBER; hash = (53 * hash) + getPerPage(); if (getWorkerUserIdsCount() > 0) { hash = (37 * hash) + WORKER_USER_IDS_FIELD_NUMBER; hash = (53 * hash) + getWorkerUserIdsList().hashCode(); } if (getReviewUserIdsCount() > 0) { hash = (37 * hash) + REVIEW_USER_IDS_FIELD_NUMBER; hash = (53 * hash) + getReviewUserIdsList().hashCode(); } if (getLabelOrderIdsCount() > 0) { hash = (37 * hash) + LABEL_ORDER_IDS_FIELD_NUMBER; hash = (53 * hash) + getLabelOrderIdsList().hashCode(); } hash = (37 * hash) + INCLUDING_LABEL_ORDER_TASKS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getIncludingLabelOrderTasks()); if (getAdditionalFieldsCount() > 0) { hash = (37 * hash) + ADDITIONAL_FIELDS_FIELD_NUMBER; hash = (53 * hash) + getAdditionalFieldsList().hashCode(); } if (getIdsCount() > 0) { hash = (37 * hash) + IDS_FIELD_NUMBER; hash = (53 * hash) + getIdsList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.clarifai.grpc.api.ListTasksRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.ListTasksRequest 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.ListTasksRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.ListTasksRequest 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.ListTasksRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.ListTasksRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.clarifai.grpc.api.ListTasksRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.clarifai.grpc.api.ListTasksRequest 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.ListTasksRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.clarifai.grpc.api.ListTasksRequest 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.ListTasksRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.clarifai.grpc.api.ListTasksRequest 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.ListTasksRequest 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; } /** *
   * Request to list multiple tasks.
   * 
* * Protobuf type {@code clarifai.api.ListTasksRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:clarifai.api.ListTasksRequest) com.clarifai.grpc.api.ListTasksRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.clarifai.grpc.api.Service.internal_static_clarifai_api_ListTasksRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.clarifai.grpc.api.Service.internal_static_clarifai_api_ListTasksRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.clarifai.grpc.api.ListTasksRequest.class, com.clarifai.grpc.api.ListTasksRequest.Builder.class); } // Construct using com.clarifai.grpc.api.ListTasksRequest.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(); if (userAppIdBuilder_ == null) { userAppId_ = null; } else { userAppId_ = null; userAppIdBuilder_ = null; } page_ = 0; perPage_ = 0; workerUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); reviewUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000002); labelOrderIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000004); includingLabelOrderTasks_ = false; additionalFields_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000008); ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000010); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.clarifai.grpc.api.Service.internal_static_clarifai_api_ListTasksRequest_descriptor; } @java.lang.Override public com.clarifai.grpc.api.ListTasksRequest getDefaultInstanceForType() { return com.clarifai.grpc.api.ListTasksRequest.getDefaultInstance(); } @java.lang.Override public com.clarifai.grpc.api.ListTasksRequest build() { com.clarifai.grpc.api.ListTasksRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.clarifai.grpc.api.ListTasksRequest buildPartial() { com.clarifai.grpc.api.ListTasksRequest result = new com.clarifai.grpc.api.ListTasksRequest(this); int from_bitField0_ = bitField0_; if (userAppIdBuilder_ == null) { result.userAppId_ = userAppId_; } else { result.userAppId_ = userAppIdBuilder_.build(); } result.page_ = page_; result.perPage_ = perPage_; if (((bitField0_ & 0x00000001) != 0)) { workerUserIds_ = workerUserIds_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000001); } result.workerUserIds_ = workerUserIds_; if (((bitField0_ & 0x00000002) != 0)) { reviewUserIds_ = reviewUserIds_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000002); } result.reviewUserIds_ = reviewUserIds_; if (((bitField0_ & 0x00000004) != 0)) { labelOrderIds_ = labelOrderIds_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000004); } result.labelOrderIds_ = labelOrderIds_; result.includingLabelOrderTasks_ = includingLabelOrderTasks_; if (((bitField0_ & 0x00000008) != 0)) { additionalFields_ = additionalFields_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000008); } result.additionalFields_ = additionalFields_; if (((bitField0_ & 0x00000010) != 0)) { ids_ = ids_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000010); } result.ids_ = ids_; 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.ListTasksRequest) { return mergeFrom((com.clarifai.grpc.api.ListTasksRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.clarifai.grpc.api.ListTasksRequest other) { if (other == com.clarifai.grpc.api.ListTasksRequest.getDefaultInstance()) return this; if (other.hasUserAppId()) { mergeUserAppId(other.getUserAppId()); } if (other.getPage() != 0) { setPage(other.getPage()); } if (other.getPerPage() != 0) { setPerPage(other.getPerPage()); } if (!other.workerUserIds_.isEmpty()) { if (workerUserIds_.isEmpty()) { workerUserIds_ = other.workerUserIds_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureWorkerUserIdsIsMutable(); workerUserIds_.addAll(other.workerUserIds_); } onChanged(); } if (!other.reviewUserIds_.isEmpty()) { if (reviewUserIds_.isEmpty()) { reviewUserIds_ = other.reviewUserIds_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureReviewUserIdsIsMutable(); reviewUserIds_.addAll(other.reviewUserIds_); } onChanged(); } if (!other.labelOrderIds_.isEmpty()) { if (labelOrderIds_.isEmpty()) { labelOrderIds_ = other.labelOrderIds_; bitField0_ = (bitField0_ & ~0x00000004); } else { ensureLabelOrderIdsIsMutable(); labelOrderIds_.addAll(other.labelOrderIds_); } onChanged(); } if (other.getIncludingLabelOrderTasks() != false) { setIncludingLabelOrderTasks(other.getIncludingLabelOrderTasks()); } if (!other.additionalFields_.isEmpty()) { if (additionalFields_.isEmpty()) { additionalFields_ = other.additionalFields_; bitField0_ = (bitField0_ & ~0x00000008); } else { ensureAdditionalFieldsIsMutable(); additionalFields_.addAll(other.additionalFields_); } onChanged(); } if (!other.ids_.isEmpty()) { if (ids_.isEmpty()) { ids_ = other.ids_; bitField0_ = (bitField0_ & ~0x00000010); } else { ensureIdsIsMutable(); ids_.addAll(other.ids_); } 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.ListTasksRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.clarifai.grpc.api.ListTasksRequest) 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 int page_ ; /** *
     * (optional URL parameter) The page number. Pagination is used to split the results into chunks.
     * Defaults to 1.
     * 
* * uint32 page = 2; * @return The page. */ @java.lang.Override public int getPage() { return page_; } /** *
     * (optional URL parameter) The page number. Pagination is used to split the results into chunks.
     * Defaults to 1.
     * 
* * uint32 page = 2; * @param value The page to set. * @return This builder for chaining. */ public Builder setPage(int value) { page_ = value; onChanged(); return this; } /** *
     * (optional URL parameter) The page number. Pagination is used to split the results into chunks.
     * Defaults to 1.
     * 
* * uint32 page = 2; * @return This builder for chaining. */ public Builder clearPage() { page_ = 0; onChanged(); return this; } private int perPage_ ; /** *
     * (optional URL parameter) The number of results that will be contained in each page. Defaults
     * to 128.
     * 
* * uint32 per_page = 3; * @return The perPage. */ @java.lang.Override public int getPerPage() { return perPage_; } /** *
     * (optional URL parameter) The number of results that will be contained in each page. Defaults
     * to 128.
     * 
* * uint32 per_page = 3; * @param value The perPage to set. * @return This builder for chaining. */ public Builder setPerPage(int value) { perPage_ = value; onChanged(); return this; } /** *
     * (optional URL parameter) The number of results that will be contained in each page. Defaults
     * to 128.
     * 
* * uint32 per_page = 3; * @return This builder for chaining. */ public Builder clearPerPage() { perPage_ = 0; onChanged(); return this; } private com.google.protobuf.LazyStringList workerUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureWorkerUserIdsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { workerUserIds_ = new com.google.protobuf.LazyStringArrayList(workerUserIds_); bitField0_ |= 0x00000001; } } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @return A list containing the workerUserIds. */ public com.google.protobuf.ProtocolStringList getWorkerUserIdsList() { return workerUserIds_.getUnmodifiableView(); } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @return The count of workerUserIds. */ public int getWorkerUserIdsCount() { return workerUserIds_.size(); } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @param index The index of the element to return. * @return The workerUserIds at the given index. */ public java.lang.String getWorkerUserIds(int index) { return workerUserIds_.get(index); } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @param index The index of the value to return. * @return The bytes of the workerUserIds at the given index. */ public com.google.protobuf.ByteString getWorkerUserIdsBytes(int index) { return workerUserIds_.getByteString(index); } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @param index The index to set the value at. * @param value The workerUserIds to set. * @return This builder for chaining. */ public Builder setWorkerUserIds( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureWorkerUserIdsIsMutable(); workerUserIds_.set(index, value); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @param value The workerUserIds to add. * @return This builder for chaining. */ public Builder addWorkerUserIds( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureWorkerUserIdsIsMutable(); workerUserIds_.add(value); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @param values The workerUserIds to add. * @return This builder for chaining. */ public Builder addAllWorkerUserIds( java.lang.Iterable values) { ensureWorkerUserIdsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, workerUserIds_); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @return This builder for chaining. */ public Builder clearWorkerUserIds() { workerUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as worker.
     * 
* * repeated string worker_user_ids = 4; * @param value The bytes of the workerUserIds to add. * @return This builder for chaining. */ public Builder addWorkerUserIdsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureWorkerUserIdsIsMutable(); workerUserIds_.add(value); onChanged(); return this; } private com.google.protobuf.LazyStringList reviewUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureReviewUserIdsIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { reviewUserIds_ = new com.google.protobuf.LazyStringArrayList(reviewUserIds_); bitField0_ |= 0x00000002; } } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @return A list containing the reviewUserIds. */ public com.google.protobuf.ProtocolStringList getReviewUserIdsList() { return reviewUserIds_.getUnmodifiableView(); } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @return The count of reviewUserIds. */ public int getReviewUserIdsCount() { return reviewUserIds_.size(); } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @param index The index of the element to return. * @return The reviewUserIds at the given index. */ public java.lang.String getReviewUserIds(int index) { return reviewUserIds_.get(index); } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @param index The index of the value to return. * @return The bytes of the reviewUserIds at the given index. */ public com.google.protobuf.ByteString getReviewUserIdsBytes(int index) { return reviewUserIds_.getByteString(index); } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @param index The index to set the value at. * @param value The reviewUserIds to set. * @return This builder for chaining. */ public Builder setReviewUserIds( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureReviewUserIdsIsMutable(); reviewUserIds_.set(index, value); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @param value The reviewUserIds to add. * @return This builder for chaining. */ public Builder addReviewUserIds( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureReviewUserIdsIsMutable(); reviewUserIds_.add(value); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @param values The reviewUserIds to add. * @return This builder for chaining. */ public Builder addAllReviewUserIds( java.lang.Iterable values) { ensureReviewUserIdsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, reviewUserIds_); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @return This builder for chaining. */ public Builder clearReviewUserIds() { reviewUserIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** *
     * Get tasks that have ANY user from this list assigned as reviewer.
     * 
* * repeated string review_user_ids = 5; * @param value The bytes of the reviewUserIds to add. * @return This builder for chaining. */ public Builder addReviewUserIdsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureReviewUserIdsIsMutable(); reviewUserIds_.add(value); onChanged(); return this; } private com.google.protobuf.LazyStringList labelOrderIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureLabelOrderIdsIsMutable() { if (!((bitField0_ & 0x00000004) != 0)) { labelOrderIds_ = new com.google.protobuf.LazyStringArrayList(labelOrderIds_); bitField0_ |= 0x00000004; } } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @return A list containing the labelOrderIds. */ public com.google.protobuf.ProtocolStringList getLabelOrderIdsList() { return labelOrderIds_.getUnmodifiableView(); } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @return The count of labelOrderIds. */ public int getLabelOrderIdsCount() { return labelOrderIds_.size(); } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @param index The index of the element to return. * @return The labelOrderIds at the given index. */ public java.lang.String getLabelOrderIds(int index) { return labelOrderIds_.get(index); } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @param index The index of the value to return. * @return The bytes of the labelOrderIds at the given index. */ public com.google.protobuf.ByteString getLabelOrderIdsBytes(int index) { return labelOrderIds_.getByteString(index); } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @param index The index to set the value at. * @param value The labelOrderIds to set. * @return This builder for chaining. */ public Builder setLabelOrderIds( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureLabelOrderIdsIsMutable(); labelOrderIds_.set(index, value); onChanged(); return this; } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @param value The labelOrderIds to add. * @return This builder for chaining. */ public Builder addLabelOrderIds( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureLabelOrderIdsIsMutable(); labelOrderIds_.add(value); onChanged(); return this; } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @param values The labelOrderIds to add. * @return This builder for chaining. */ public Builder addAllLabelOrderIds( java.lang.Iterable values) { ensureLabelOrderIdsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, labelOrderIds_); onChanged(); return this; } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @return This builder for chaining. */ public Builder clearLabelOrderIds() { labelOrderIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** *
     * Get tasks that are associated to ANY label order from this list.
     * 
* * repeated string label_order_ids = 8; * @param value The bytes of the labelOrderIds to add. * @return This builder for chaining. */ public Builder addLabelOrderIdsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureLabelOrderIdsIsMutable(); labelOrderIds_.add(value); onChanged(); return this; } private boolean includingLabelOrderTasks_ ; /** *
     * Get label order tasks as well
     * It is automatically set to true if label_order_ids is set.
     * 
* * bool including_label_order_tasks = 6; * @return The includingLabelOrderTasks. */ @java.lang.Override public boolean getIncludingLabelOrderTasks() { return includingLabelOrderTasks_; } /** *
     * Get label order tasks as well
     * It is automatically set to true if label_order_ids is set.
     * 
* * bool including_label_order_tasks = 6; * @param value The includingLabelOrderTasks to set. * @return This builder for chaining. */ public Builder setIncludingLabelOrderTasks(boolean value) { includingLabelOrderTasks_ = value; onChanged(); return this; } /** *
     * Get label order tasks as well
     * It is automatically set to true if label_order_ids is set.
     * 
* * bool including_label_order_tasks = 6; * @return This builder for chaining. */ public Builder clearIncludingLabelOrderTasks() { includingLabelOrderTasks_ = false; onChanged(); return this; } private com.google.protobuf.LazyStringList additionalFields_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureAdditionalFieldsIsMutable() { if (!((bitField0_ & 0x00000008) != 0)) { additionalFields_ = new com.google.protobuf.LazyStringArrayList(additionalFields_); bitField0_ |= 0x00000008; } } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @return A list containing the additionalFields. */ public com.google.protobuf.ProtocolStringList getAdditionalFieldsList() { return additionalFields_.getUnmodifiableView(); } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @return The count of additionalFields. */ public int getAdditionalFieldsCount() { return additionalFields_.size(); } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @param index The index of the element to return. * @return The additionalFields at the given index. */ public java.lang.String getAdditionalFields(int index) { return additionalFields_.get(index); } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @param index The index of the value to return. * @return The bytes of the additionalFields at the given index. */ public com.google.protobuf.ByteString getAdditionalFieldsBytes(int index) { return additionalFields_.getByteString(index); } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @param index The index to set the value at. * @param value The additionalFields to set. * @return This builder for chaining. */ public Builder setAdditionalFields( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureAdditionalFieldsIsMutable(); additionalFields_.set(index, value); onChanged(); return this; } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @param value The additionalFields to add. * @return This builder for chaining. */ public Builder addAdditionalFields( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureAdditionalFieldsIsMutable(); additionalFields_.add(value); onChanged(); return this; } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @param values The additionalFields to add. * @return This builder for chaining. */ public Builder addAllAdditionalFields( java.lang.Iterable values) { ensureAdditionalFieldsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, additionalFields_); onChanged(); return this; } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @return This builder for chaining. */ public Builder clearAdditionalFields() { additionalFields_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000008); onChanged(); return this; } /** *
     * (optional URL parameter) List of additional fields to be included in the response.
     * Currently supported additional fields:
     * - all
     * - worker.users
     * - review.users
     * - metrics.input_source.inputs_count_estimated
     * - metrics.work.inputs_count_estimated
     * - metrics.work.inputs_percent_estimated
     * - metrics.review.inputs_count_estimated
     * - metrics.review.inputs_percent_estimated
     * 
* * repeated string additional_fields = 7; * @param value The bytes of the additionalFields to add. * @return This builder for chaining. */ public Builder addAdditionalFieldsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureAdditionalFieldsIsMutable(); additionalFields_.add(value); onChanged(); return this; } private com.google.protobuf.LazyStringList ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureIdsIsMutable() { if (!((bitField0_ & 0x00000010) != 0)) { ids_ = new com.google.protobuf.LazyStringArrayList(ids_); bitField0_ |= 0x00000010; } } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @return A list containing the ids. */ public com.google.protobuf.ProtocolStringList getIdsList() { return ids_.getUnmodifiableView(); } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @return The count of ids. */ public int getIdsCount() { return ids_.size(); } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @param index The index of the element to return. * @return The ids at the given index. */ public java.lang.String getIds(int index) { return ids_.get(index); } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @param index The index of the value to return. * @return The bytes of the ids at the given index. */ public com.google.protobuf.ByteString getIdsBytes(int index) { return ids_.getByteString(index); } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @param index The index to set the value at. * @param value The ids to set. * @return This builder for chaining. */ public Builder setIds( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureIdsIsMutable(); ids_.set(index, value); onChanged(); return this; } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @param value The ids to add. * @return This builder for chaining. */ public Builder addIds( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureIdsIsMutable(); ids_.add(value); onChanged(); return this; } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @param values The ids to add. * @return This builder for chaining. */ public Builder addAllIds( java.lang.Iterable values) { ensureIdsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, ids_); onChanged(); return this; } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @return This builder for chaining. */ public Builder clearIds() { ids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000010); onChanged(); return this; } /** *
     * (optional) task IDs to filter on
     * 
* * repeated string ids = 9; * @param value The bytes of the ids to add. * @return This builder for chaining. */ public Builder addIdsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureIdsIsMutable(); ids_.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.ListTasksRequest) } // @@protoc_insertion_point(class_scope:clarifai.api.ListTasksRequest) private static final com.clarifai.grpc.api.ListTasksRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.clarifai.grpc.api.ListTasksRequest(); } public static com.clarifai.grpc.api.ListTasksRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ListTasksRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new ListTasksRequest(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.ListTasksRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy