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

com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult 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_measure.proto

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

/**
 * Protobuf type {@code Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainResult}
 */
public final class DescribeVodPlayFileLogByDomainResult extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainResult)
    DescribeVodPlayFileLogByDomainResultOrBuilder {
private static final long serialVersionUID = 0L;
  // Use DescribeVodPlayFileLogByDomainResult.newBuilder() to construct.
  private DescribeVodPlayFileLogByDomainResult(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private DescribeVodPlayFileLogByDomainResult() {
    startTime_ = "";
    endTime_ = "";
    domainList_ = com.google.protobuf.LazyStringArrayList.EMPTY;
    fileList_ = java.util.Collections.emptyList();
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private DescribeVodPlayFileLogByDomainResult(
      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();

            startTime_ = s;
            break;
          }
          case 18: {
            java.lang.String s = input.readStringRequireUtf8();

            endTime_ = s;
            break;
          }
          case 26: {
            java.lang.String s = input.readStringRequireUtf8();
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              domainList_ = new com.google.protobuf.LazyStringArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            domainList_.add(s);
            break;
          }
          case 34: {
            if (!((mutable_bitField0_ & 0x00000002) != 0)) {
              fileList_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000002;
            }
            fileList_.add(
                input.readMessage(com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.parser(), extensionRegistry));
            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)) {
        domainList_ = domainList_.getUnmodifiableView();
      }
      if (((mutable_bitField0_ & 0x00000002) != 0)) {
        fileList_ = java.util.Collections.unmodifiableList(fileList_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.byteplus.service.vod.model.business.VodMeasure.internal_static_Byteplus_Vod_Models_Business_DescribeVodPlayFileLogByDomainResult_descriptor;
  }

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

  public static final int STARTTIME_FIELD_NUMBER = 1;
  private volatile java.lang.Object startTime_;
  /**
   * 
   * 查询的起始时间, rfc3339格式, 最早查询1年内的数据
   * 
* * string StartTime = 1; * @return The startTime. */ @java.lang.Override public java.lang.String getStartTime() { java.lang.Object ref = startTime_; 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(); startTime_ = s; return s; } } /** *
   * 查询的起始时间, rfc3339格式, 最早查询1年内的数据
   * 
* * string StartTime = 1; * @return The bytes for startTime. */ @java.lang.Override public com.google.protobuf.ByteString getStartTimeBytes() { java.lang.Object ref = startTime_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); startTime_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ENDTIME_FIELD_NUMBER = 2; private volatile java.lang.Object endTime_; /** *
   * 查询的结束时间, rfc3339;起止时间间隔不超过93天
   * 
* * string EndTime = 2; * @return The endTime. */ @java.lang.Override public java.lang.String getEndTime() { java.lang.Object ref = endTime_; 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(); endTime_ = s; return s; } } /** *
   * 查询的结束时间, rfc3339;起止时间间隔不超过93天
   * 
* * string EndTime = 2; * @return The bytes for endTime. */ @java.lang.Override public com.google.protobuf.ByteString getEndTimeBytes() { java.lang.Object ref = endTime_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); endTime_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DOMAINLIST_FIELD_NUMBER = 3; private com.google.protobuf.LazyStringList domainList_; /** *
   * 查询域名列表
   * 
* * repeated string DomainList = 3; * @return A list containing the domainList. */ public com.google.protobuf.ProtocolStringList getDomainListList() { return domainList_; } /** *
   * 查询域名列表
   * 
* * repeated string DomainList = 3; * @return The count of domainList. */ public int getDomainListCount() { return domainList_.size(); } /** *
   * 查询域名列表
   * 
* * repeated string DomainList = 3; * @param index The index of the element to return. * @return The domainList at the given index. */ public java.lang.String getDomainList(int index) { return domainList_.get(index); } /** *
   * 查询域名列表
   * 
* * repeated string DomainList = 3; * @param index The index of the value to return. * @return The bytes of the domainList at the given index. */ public com.google.protobuf.ByteString getDomainListBytes(int index) { return domainList_.getByteString(index); } public static final int FILELIST_FIELD_NUMBER = 4; private java.util.List fileList_; /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ @java.lang.Override public java.util.List getFileListList() { return fileList_; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ @java.lang.Override public java.util.List getFileListOrBuilderList() { return fileList_; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ @java.lang.Override public int getFileListCount() { return fileList_.size(); } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ @java.lang.Override public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem getFileList(int index) { return fileList_.get(index); } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ @java.lang.Override public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItemOrBuilder getFileListOrBuilder( int index) { return fileList_.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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(startTime_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, startTime_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(endTime_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, endTime_); } for (int i = 0; i < domainList_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, domainList_.getRaw(i)); } for (int i = 0; i < fileList_.size(); i++) { output.writeMessage(4, fileList_.get(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(startTime_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, startTime_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(endTime_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, endTime_); } { int dataSize = 0; for (int i = 0; i < domainList_.size(); i++) { dataSize += computeStringSizeNoTag(domainList_.getRaw(i)); } size += dataSize; size += 1 * getDomainListList().size(); } for (int i = 0; i < fileList_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, fileList_.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.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult)) { return super.equals(obj); } com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult other = (com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult) obj; if (!getStartTime() .equals(other.getStartTime())) return false; if (!getEndTime() .equals(other.getEndTime())) return false; if (!getDomainListList() .equals(other.getDomainListList())) return false; if (!getFileListList() .equals(other.getFileListList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + STARTTIME_FIELD_NUMBER; hash = (53 * hash) + getStartTime().hashCode(); hash = (37 * hash) + ENDTIME_FIELD_NUMBER; hash = (53 * hash) + getEndTime().hashCode(); if (getDomainListCount() > 0) { hash = (37 * hash) + DOMAINLIST_FIELD_NUMBER; hash = (53 * hash) + getDomainListList().hashCode(); } if (getFileListCount() > 0) { hash = (37 * hash) + FILELIST_FIELD_NUMBER; hash = (53 * hash) + getFileListList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult 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.DescribeVodPlayFileLogByDomainResult} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainResult) com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResultOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.byteplus.service.vod.model.business.VodMeasure.internal_static_Byteplus_Vod_Models_Business_DescribeVodPlayFileLogByDomainResult_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.byteplus.service.vod.model.business.VodMeasure.internal_static_Byteplus_Vod_Models_Business_DescribeVodPlayFileLogByDomainResult_fieldAccessorTable .ensureFieldAccessorsInitialized( com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult.class, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult.Builder.class); } // Construct using com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getFileListFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); startTime_ = ""; endTime_ = ""; domainList_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); if (fileListBuilder_ == null) { fileList_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); } else { fileListBuilder_.clear(); } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.byteplus.service.vod.model.business.VodMeasure.internal_static_Byteplus_Vod_Models_Business_DescribeVodPlayFileLogByDomainResult_descriptor; } @java.lang.Override public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult getDefaultInstanceForType() { return com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult.getDefaultInstance(); } @java.lang.Override public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult build() { com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult buildPartial() { com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult result = new com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult(this); int from_bitField0_ = bitField0_; result.startTime_ = startTime_; result.endTime_ = endTime_; if (((bitField0_ & 0x00000001) != 0)) { domainList_ = domainList_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000001); } result.domainList_ = domainList_; if (fileListBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0)) { fileList_ = java.util.Collections.unmodifiableList(fileList_); bitField0_ = (bitField0_ & ~0x00000002); } result.fileList_ = fileList_; } else { result.fileList_ = fileListBuilder_.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.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult) { return mergeFrom((com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult other) { if (other == com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult.getDefaultInstance()) return this; if (!other.getStartTime().isEmpty()) { startTime_ = other.startTime_; onChanged(); } if (!other.getEndTime().isEmpty()) { endTime_ = other.endTime_; onChanged(); } if (!other.domainList_.isEmpty()) { if (domainList_.isEmpty()) { domainList_ = other.domainList_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureDomainListIsMutable(); domainList_.addAll(other.domainList_); } onChanged(); } if (fileListBuilder_ == null) { if (!other.fileList_.isEmpty()) { if (fileList_.isEmpty()) { fileList_ = other.fileList_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureFileListIsMutable(); fileList_.addAll(other.fileList_); } onChanged(); } } else { if (!other.fileList_.isEmpty()) { if (fileListBuilder_.isEmpty()) { fileListBuilder_.dispose(); fileListBuilder_ = null; fileList_ = other.fileList_; bitField0_ = (bitField0_ & ~0x00000002); fileListBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getFileListFieldBuilder() : null; } else { fileListBuilder_.addAllMessages(other.fileList_); } } } 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.DescribeVodPlayFileLogByDomainResult parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object startTime_ = ""; /** *
     * 查询的起始时间, rfc3339格式, 最早查询1年内的数据
     * 
* * string StartTime = 1; * @return The startTime. */ public java.lang.String getStartTime() { java.lang.Object ref = startTime_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); startTime_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * 查询的起始时间, rfc3339格式, 最早查询1年内的数据
     * 
* * string StartTime = 1; * @return The bytes for startTime. */ public com.google.protobuf.ByteString getStartTimeBytes() { java.lang.Object ref = startTime_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); startTime_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * 查询的起始时间, rfc3339格式, 最早查询1年内的数据
     * 
* * string StartTime = 1; * @param value The startTime to set. * @return This builder for chaining. */ public Builder setStartTime( java.lang.String value) { if (value == null) { throw new NullPointerException(); } startTime_ = value; onChanged(); return this; } /** *
     * 查询的起始时间, rfc3339格式, 最早查询1年内的数据
     * 
* * string StartTime = 1; * @return This builder for chaining. */ public Builder clearStartTime() { startTime_ = getDefaultInstance().getStartTime(); onChanged(); return this; } /** *
     * 查询的起始时间, rfc3339格式, 最早查询1年内的数据
     * 
* * string StartTime = 1; * @param value The bytes for startTime to set. * @return This builder for chaining. */ public Builder setStartTimeBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); startTime_ = value; onChanged(); return this; } private java.lang.Object endTime_ = ""; /** *
     * 查询的结束时间, rfc3339;起止时间间隔不超过93天
     * 
* * string EndTime = 2; * @return The endTime. */ public java.lang.String getEndTime() { java.lang.Object ref = endTime_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); endTime_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * 查询的结束时间, rfc3339;起止时间间隔不超过93天
     * 
* * string EndTime = 2; * @return The bytes for endTime. */ public com.google.protobuf.ByteString getEndTimeBytes() { java.lang.Object ref = endTime_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); endTime_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * 查询的结束时间, rfc3339;起止时间间隔不超过93天
     * 
* * string EndTime = 2; * @param value The endTime to set. * @return This builder for chaining. */ public Builder setEndTime( java.lang.String value) { if (value == null) { throw new NullPointerException(); } endTime_ = value; onChanged(); return this; } /** *
     * 查询的结束时间, rfc3339;起止时间间隔不超过93天
     * 
* * string EndTime = 2; * @return This builder for chaining. */ public Builder clearEndTime() { endTime_ = getDefaultInstance().getEndTime(); onChanged(); return this; } /** *
     * 查询的结束时间, rfc3339;起止时间间隔不超过93天
     * 
* * string EndTime = 2; * @param value The bytes for endTime to set. * @return This builder for chaining. */ public Builder setEndTimeBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); endTime_ = value; onChanged(); return this; } private com.google.protobuf.LazyStringList domainList_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureDomainListIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { domainList_ = new com.google.protobuf.LazyStringArrayList(domainList_); bitField0_ |= 0x00000001; } } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @return A list containing the domainList. */ public com.google.protobuf.ProtocolStringList getDomainListList() { return domainList_.getUnmodifiableView(); } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @return The count of domainList. */ public int getDomainListCount() { return domainList_.size(); } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @param index The index of the element to return. * @return The domainList at the given index. */ public java.lang.String getDomainList(int index) { return domainList_.get(index); } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @param index The index of the value to return. * @return The bytes of the domainList at the given index. */ public com.google.protobuf.ByteString getDomainListBytes(int index) { return domainList_.getByteString(index); } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @param index The index to set the value at. * @param value The domainList to set. * @return This builder for chaining. */ public Builder setDomainList( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureDomainListIsMutable(); domainList_.set(index, value); onChanged(); return this; } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @param value The domainList to add. * @return This builder for chaining. */ public Builder addDomainList( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureDomainListIsMutable(); domainList_.add(value); onChanged(); return this; } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @param values The domainList to add. * @return This builder for chaining. */ public Builder addAllDomainList( java.lang.Iterable values) { ensureDomainListIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, domainList_); onChanged(); return this; } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @return This builder for chaining. */ public Builder clearDomainList() { domainList_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * 查询域名列表
     * 
* * repeated string DomainList = 3; * @param value The bytes of the domainList to add. * @return This builder for chaining. */ public Builder addDomainListBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureDomainListIsMutable(); domainList_.add(value); onChanged(); return this; } private java.util.List fileList_ = java.util.Collections.emptyList(); private void ensureFileListIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { fileList_ = new java.util.ArrayList(fileList_); bitField0_ |= 0x00000002; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItemOrBuilder> fileListBuilder_; /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public java.util.List getFileListList() { if (fileListBuilder_ == null) { return java.util.Collections.unmodifiableList(fileList_); } else { return fileListBuilder_.getMessageList(); } } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public int getFileListCount() { if (fileListBuilder_ == null) { return fileList_.size(); } else { return fileListBuilder_.getCount(); } } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem getFileList(int index) { if (fileListBuilder_ == null) { return fileList_.get(index); } else { return fileListBuilder_.getMessage(index); } } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder setFileList( int index, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem value) { if (fileListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFileListIsMutable(); fileList_.set(index, value); onChanged(); } else { fileListBuilder_.setMessage(index, value); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder setFileList( int index, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder builderForValue) { if (fileListBuilder_ == null) { ensureFileListIsMutable(); fileList_.set(index, builderForValue.build()); onChanged(); } else { fileListBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder addFileList(com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem value) { if (fileListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFileListIsMutable(); fileList_.add(value); onChanged(); } else { fileListBuilder_.addMessage(value); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder addFileList( int index, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem value) { if (fileListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFileListIsMutable(); fileList_.add(index, value); onChanged(); } else { fileListBuilder_.addMessage(index, value); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder addFileList( com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder builderForValue) { if (fileListBuilder_ == null) { ensureFileListIsMutable(); fileList_.add(builderForValue.build()); onChanged(); } else { fileListBuilder_.addMessage(builderForValue.build()); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder addFileList( int index, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder builderForValue) { if (fileListBuilder_ == null) { ensureFileListIsMutable(); fileList_.add(index, builderForValue.build()); onChanged(); } else { fileListBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder addAllFileList( java.lang.Iterable values) { if (fileListBuilder_ == null) { ensureFileListIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, fileList_); onChanged(); } else { fileListBuilder_.addAllMessages(values); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder clearFileList() { if (fileListBuilder_ == null) { fileList_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); } else { fileListBuilder_.clear(); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public Builder removeFileList(int index) { if (fileListBuilder_ == null) { ensureFileListIsMutable(); fileList_.remove(index); onChanged(); } else { fileListBuilder_.remove(index); } return this; } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder getFileListBuilder( int index) { return getFileListFieldBuilder().getBuilder(index); } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItemOrBuilder getFileListOrBuilder( int index) { if (fileListBuilder_ == null) { return fileList_.get(index); } else { return fileListBuilder_.getMessageOrBuilder(index); } } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public java.util.List getFileListOrBuilderList() { if (fileListBuilder_ != null) { return fileListBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(fileList_); } } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder addFileListBuilder() { return getFileListFieldBuilder().addBuilder( com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.getDefaultInstance()); } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder addFileListBuilder( int index) { return getFileListFieldBuilder().addBuilder( index, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.getDefaultInstance()); } /** * repeated .Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainItem FileList = 4; */ public java.util.List getFileListBuilderList() { return getFileListFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItemOrBuilder> getFileListFieldBuilder() { if (fileListBuilder_ == null) { fileListBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItem.Builder, com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainItemOrBuilder>( fileList_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); fileList_ = null; } return fileListBuilder_; } @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.DescribeVodPlayFileLogByDomainResult) } // @@protoc_insertion_point(class_scope:Byteplus.Vod.Models.Business.DescribeVodPlayFileLogByDomainResult) private static final com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult(); } public static com.byteplus.service.vod.model.business.DescribeVodPlayFileLogByDomainResult getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public DescribeVodPlayFileLogByDomainResult parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new DescribeVodPlayFileLogByDomainResult(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.DescribeVodPlayFileLogByDomainResult getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy