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

com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: byteplus/vod/business/vod_media.proto

package com.byteplus.service.vod.model.business;

/**
 * Protobuf type {@code Byteplus.Vod.Models.Business.VodSubmitUnblockMediaTaskResult}
 */
public final class VodSubmitUnblockMediaTaskResult extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:Byteplus.Vod.Models.Business.VodSubmitUnblockMediaTaskResult)
    VodSubmitUnblockMediaTaskResultOrBuilder {
private static final long serialVersionUID = 0L;
  // Use VodSubmitUnblockMediaTaskResult.newBuilder() to construct.
  private VodSubmitUnblockMediaTaskResult(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private VodSubmitUnblockMediaTaskResult() {
    notExistVids_ = com.google.protobuf.LazyStringArrayList.EMPTY;
    unblockedVids_ = com.google.protobuf.LazyStringArrayList.EMPTY;
    blockingVids_ = com.google.protobuf.LazyStringArrayList.EMPTY;
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new VodSubmitUnblockMediaTaskResult();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private VodSubmitUnblockMediaTaskResult(
      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: {
            java.lang.String s = input.readStringRequireUtf8();
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              notExistVids_ = new com.google.protobuf.LazyStringArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            notExistVids_.add(s);
            break;
          }
          case 18: {
            java.lang.String s = input.readStringRequireUtf8();
            if (!((mutable_bitField0_ & 0x00000002) != 0)) {
              unblockedVids_ = new com.google.protobuf.LazyStringArrayList();
              mutable_bitField0_ |= 0x00000002;
            }
            unblockedVids_.add(s);
            break;
          }
          case 26: {
            java.lang.String s = input.readStringRequireUtf8();
            if (!((mutable_bitField0_ & 0x00000004) != 0)) {
              blockingVids_ = new com.google.protobuf.LazyStringArrayList();
              mutable_bitField0_ |= 0x00000004;
            }
            blockingVids_.add(s);
            break;
          }
          default: {
            if (!parseUnknownField(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
        }
      }
    } catch (com.google.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new com.google.protobuf.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      if (((mutable_bitField0_ & 0x00000001) != 0)) {
        notExistVids_ = notExistVids_.getUnmodifiableView();
      }
      if (((mutable_bitField0_ & 0x00000002) != 0)) {
        unblockedVids_ = unblockedVids_.getUnmodifiableView();
      }
      if (((mutable_bitField0_ & 0x00000004) != 0)) {
        blockingVids_ = blockingVids_.getUnmodifiableView();
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.byteplus.service.vod.model.business.VodMedia.internal_static_Byteplus_Vod_Models_Business_VodSubmitUnblockMediaTaskResult_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.byteplus.service.vod.model.business.VodMedia.internal_static_Byteplus_Vod_Models_Business_VodSubmitUnblockMediaTaskResult_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult.class, com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult.Builder.class);
  }

  public static final int NOTEXISTVIDS_FIELD_NUMBER = 1;
  private com.google.protobuf.LazyStringList notExistVids_;
  /**
   * 
   * 不存在的Vid列表
   * 
* * repeated string NotExistVids = 1; * @return A list containing the notExistVids. */ public com.google.protobuf.ProtocolStringList getNotExistVidsList() { return notExistVids_; } /** *
   * 不存在的Vid列表
   * 
* * repeated string NotExistVids = 1; * @return The count of notExistVids. */ public int getNotExistVidsCount() { return notExistVids_.size(); } /** *
   * 不存在的Vid列表
   * 
* * repeated string NotExistVids = 1; * @param index The index of the element to return. * @return The notExistVids at the given index. */ public java.lang.String getNotExistVids(int index) { return notExistVids_.get(index); } /** *
   * 不存在的Vid列表
   * 
* * repeated string NotExistVids = 1; * @param index The index of the value to return. * @return The bytes of the notExistVids at the given index. */ public com.google.protobuf.ByteString getNotExistVidsBytes(int index) { return notExistVids_.getByteString(index); } public static final int UNBLOCKEDVIDS_FIELD_NUMBER = 2; private com.google.protobuf.LazyStringList unblockedVids_; /** *
   * 已封禁的Vid列表
   * 
* * repeated string UnblockedVids = 2; * @return A list containing the unblockedVids. */ public com.google.protobuf.ProtocolStringList getUnblockedVidsList() { return unblockedVids_; } /** *
   * 已封禁的Vid列表
   * 
* * repeated string UnblockedVids = 2; * @return The count of unblockedVids. */ public int getUnblockedVidsCount() { return unblockedVids_.size(); } /** *
   * 已封禁的Vid列表
   * 
* * repeated string UnblockedVids = 2; * @param index The index of the element to return. * @return The unblockedVids at the given index. */ public java.lang.String getUnblockedVids(int index) { return unblockedVids_.get(index); } /** *
   * 已封禁的Vid列表
   * 
* * repeated string UnblockedVids = 2; * @param index The index of the value to return. * @return The bytes of the unblockedVids at the given index. */ public com.google.protobuf.ByteString getUnblockedVidsBytes(int index) { return unblockedVids_.getByteString(index); } public static final int BLOCKINGVIDS_FIELD_NUMBER = 3; private com.google.protobuf.LazyStringList blockingVids_; /** *
   * 解封中的Vid列表
   * 
* * repeated string BlockingVids = 3; * @return A list containing the blockingVids. */ public com.google.protobuf.ProtocolStringList getBlockingVidsList() { return blockingVids_; } /** *
   * 解封中的Vid列表
   * 
* * repeated string BlockingVids = 3; * @return The count of blockingVids. */ public int getBlockingVidsCount() { return blockingVids_.size(); } /** *
   * 解封中的Vid列表
   * 
* * repeated string BlockingVids = 3; * @param index The index of the element to return. * @return The blockingVids at the given index. */ public java.lang.String getBlockingVids(int index) { return blockingVids_.get(index); } /** *
   * 解封中的Vid列表
   * 
* * repeated string BlockingVids = 3; * @param index The index of the value to return. * @return The bytes of the blockingVids at the given index. */ public com.google.protobuf.ByteString getBlockingVidsBytes(int index) { return blockingVids_.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 { for (int i = 0; i < notExistVids_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, notExistVids_.getRaw(i)); } for (int i = 0; i < unblockedVids_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, unblockedVids_.getRaw(i)); } for (int i = 0; i < blockingVids_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, blockingVids_.getRaw(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; { int dataSize = 0; for (int i = 0; i < notExistVids_.size(); i++) { dataSize += computeStringSizeNoTag(notExistVids_.getRaw(i)); } size += dataSize; size += 1 * getNotExistVidsList().size(); } { int dataSize = 0; for (int i = 0; i < unblockedVids_.size(); i++) { dataSize += computeStringSizeNoTag(unblockedVids_.getRaw(i)); } size += dataSize; size += 1 * getUnblockedVidsList().size(); } { int dataSize = 0; for (int i = 0; i < blockingVids_.size(); i++) { dataSize += computeStringSizeNoTag(blockingVids_.getRaw(i)); } size += dataSize; size += 1 * getBlockingVidsList().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.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult)) { return super.equals(obj); } com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult other = (com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult) obj; if (!getNotExistVidsList() .equals(other.getNotExistVidsList())) return false; if (!getUnblockedVidsList() .equals(other.getUnblockedVidsList())) return false; if (!getBlockingVidsList() .equals(other.getBlockingVidsList())) 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 (getNotExistVidsCount() > 0) { hash = (37 * hash) + NOTEXISTVIDS_FIELD_NUMBER; hash = (53 * hash) + getNotExistVidsList().hashCode(); } if (getUnblockedVidsCount() > 0) { hash = (37 * hash) + UNBLOCKEDVIDS_FIELD_NUMBER; hash = (53 * hash) + getUnblockedVidsList().hashCode(); } if (getBlockingVidsCount() > 0) { hash = (37 * hash) + BLOCKINGVIDS_FIELD_NUMBER; hash = (53 * hash) + getBlockingVidsList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult 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.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult 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.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult 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.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult 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; } /** * Protobuf type {@code Byteplus.Vod.Models.Business.VodSubmitUnblockMediaTaskResult} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:Byteplus.Vod.Models.Business.VodSubmitUnblockMediaTaskResult) com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResultOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.byteplus.service.vod.model.business.VodMedia.internal_static_Byteplus_Vod_Models_Business_VodSubmitUnblockMediaTaskResult_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.byteplus.service.vod.model.business.VodMedia.internal_static_Byteplus_Vod_Models_Business_VodSubmitUnblockMediaTaskResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult.class, com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult.Builder.class); } // Construct using com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult.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(); notExistVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); unblockedVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000002); blockingVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000004); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.byteplus.service.vod.model.business.VodMedia.internal_static_Byteplus_Vod_Models_Business_VodSubmitUnblockMediaTaskResult_descriptor; } @java.lang.Override public com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult getDefaultInstanceForType() { return com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult.getDefaultInstance(); } @java.lang.Override public com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult build() { com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult buildPartial() { com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult result = new com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult(this); int from_bitField0_ = bitField0_; if (((bitField0_ & 0x00000001) != 0)) { notExistVids_ = notExistVids_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000001); } result.notExistVids_ = notExistVids_; if (((bitField0_ & 0x00000002) != 0)) { unblockedVids_ = unblockedVids_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000002); } result.unblockedVids_ = unblockedVids_; if (((bitField0_ & 0x00000004) != 0)) { blockingVids_ = blockingVids_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000004); } result.blockingVids_ = blockingVids_; 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.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult) { return mergeFrom((com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult other) { if (other == com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult.getDefaultInstance()) return this; if (!other.notExistVids_.isEmpty()) { if (notExistVids_.isEmpty()) { notExistVids_ = other.notExistVids_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureNotExistVidsIsMutable(); notExistVids_.addAll(other.notExistVids_); } onChanged(); } if (!other.unblockedVids_.isEmpty()) { if (unblockedVids_.isEmpty()) { unblockedVids_ = other.unblockedVids_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureUnblockedVidsIsMutable(); unblockedVids_.addAll(other.unblockedVids_); } onChanged(); } if (!other.blockingVids_.isEmpty()) { if (blockingVids_.isEmpty()) { blockingVids_ = other.blockingVids_; bitField0_ = (bitField0_ & ~0x00000004); } else { ensureBlockingVidsIsMutable(); blockingVids_.addAll(other.blockingVids_); } 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.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private com.google.protobuf.LazyStringList notExistVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureNotExistVidsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { notExistVids_ = new com.google.protobuf.LazyStringArrayList(notExistVids_); bitField0_ |= 0x00000001; } } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @return A list containing the notExistVids. */ public com.google.protobuf.ProtocolStringList getNotExistVidsList() { return notExistVids_.getUnmodifiableView(); } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @return The count of notExistVids. */ public int getNotExistVidsCount() { return notExistVids_.size(); } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @param index The index of the element to return. * @return The notExistVids at the given index. */ public java.lang.String getNotExistVids(int index) { return notExistVids_.get(index); } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @param index The index of the value to return. * @return The bytes of the notExistVids at the given index. */ public com.google.protobuf.ByteString getNotExistVidsBytes(int index) { return notExistVids_.getByteString(index); } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @param index The index to set the value at. * @param value The notExistVids to set. * @return This builder for chaining. */ public Builder setNotExistVids( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureNotExistVidsIsMutable(); notExistVids_.set(index, value); onChanged(); return this; } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @param value The notExistVids to add. * @return This builder for chaining. */ public Builder addNotExistVids( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureNotExistVidsIsMutable(); notExistVids_.add(value); onChanged(); return this; } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @param values The notExistVids to add. * @return This builder for chaining. */ public Builder addAllNotExistVids( java.lang.Iterable values) { ensureNotExistVidsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, notExistVids_); onChanged(); return this; } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @return This builder for chaining. */ public Builder clearNotExistVids() { notExistVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * 不存在的Vid列表
     * 
* * repeated string NotExistVids = 1; * @param value The bytes of the notExistVids to add. * @return This builder for chaining. */ public Builder addNotExistVidsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureNotExistVidsIsMutable(); notExistVids_.add(value); onChanged(); return this; } private com.google.protobuf.LazyStringList unblockedVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureUnblockedVidsIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { unblockedVids_ = new com.google.protobuf.LazyStringArrayList(unblockedVids_); bitField0_ |= 0x00000002; } } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @return A list containing the unblockedVids. */ public com.google.protobuf.ProtocolStringList getUnblockedVidsList() { return unblockedVids_.getUnmodifiableView(); } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @return The count of unblockedVids. */ public int getUnblockedVidsCount() { return unblockedVids_.size(); } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @param index The index of the element to return. * @return The unblockedVids at the given index. */ public java.lang.String getUnblockedVids(int index) { return unblockedVids_.get(index); } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @param index The index of the value to return. * @return The bytes of the unblockedVids at the given index. */ public com.google.protobuf.ByteString getUnblockedVidsBytes(int index) { return unblockedVids_.getByteString(index); } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @param index The index to set the value at. * @param value The unblockedVids to set. * @return This builder for chaining. */ public Builder setUnblockedVids( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureUnblockedVidsIsMutable(); unblockedVids_.set(index, value); onChanged(); return this; } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @param value The unblockedVids to add. * @return This builder for chaining. */ public Builder addUnblockedVids( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureUnblockedVidsIsMutable(); unblockedVids_.add(value); onChanged(); return this; } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @param values The unblockedVids to add. * @return This builder for chaining. */ public Builder addAllUnblockedVids( java.lang.Iterable values) { ensureUnblockedVidsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, unblockedVids_); onChanged(); return this; } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @return This builder for chaining. */ public Builder clearUnblockedVids() { unblockedVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** *
     * 已封禁的Vid列表
     * 
* * repeated string UnblockedVids = 2; * @param value The bytes of the unblockedVids to add. * @return This builder for chaining. */ public Builder addUnblockedVidsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureUnblockedVidsIsMutable(); unblockedVids_.add(value); onChanged(); return this; } private com.google.protobuf.LazyStringList blockingVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureBlockingVidsIsMutable() { if (!((bitField0_ & 0x00000004) != 0)) { blockingVids_ = new com.google.protobuf.LazyStringArrayList(blockingVids_); bitField0_ |= 0x00000004; } } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @return A list containing the blockingVids. */ public com.google.protobuf.ProtocolStringList getBlockingVidsList() { return blockingVids_.getUnmodifiableView(); } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @return The count of blockingVids. */ public int getBlockingVidsCount() { return blockingVids_.size(); } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @param index The index of the element to return. * @return The blockingVids at the given index. */ public java.lang.String getBlockingVids(int index) { return blockingVids_.get(index); } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @param index The index of the value to return. * @return The bytes of the blockingVids at the given index. */ public com.google.protobuf.ByteString getBlockingVidsBytes(int index) { return blockingVids_.getByteString(index); } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @param index The index to set the value at. * @param value The blockingVids to set. * @return This builder for chaining. */ public Builder setBlockingVids( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureBlockingVidsIsMutable(); blockingVids_.set(index, value); onChanged(); return this; } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @param value The blockingVids to add. * @return This builder for chaining. */ public Builder addBlockingVids( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureBlockingVidsIsMutable(); blockingVids_.add(value); onChanged(); return this; } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @param values The blockingVids to add. * @return This builder for chaining. */ public Builder addAllBlockingVids( java.lang.Iterable values) { ensureBlockingVidsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, blockingVids_); onChanged(); return this; } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @return This builder for chaining. */ public Builder clearBlockingVids() { blockingVids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** *
     * 解封中的Vid列表
     * 
* * repeated string BlockingVids = 3; * @param value The bytes of the blockingVids to add. * @return This builder for chaining. */ public Builder addBlockingVidsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureBlockingVidsIsMutable(); blockingVids_.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:Byteplus.Vod.Models.Business.VodSubmitUnblockMediaTaskResult) } // @@protoc_insertion_point(class_scope:Byteplus.Vod.Models.Business.VodSubmitUnblockMediaTaskResult) private static final com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult(); } public static com.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public VodSubmitUnblockMediaTaskResult parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new VodSubmitUnblockMediaTaskResult(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.byteplus.service.vod.model.business.VodSubmitUnblockMediaTaskResult getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy