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

com.volcengine.service.live.model.business.DomainListInfo Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: live/business/domain.proto

package com.volcengine.service.live.model.business;

/**
 * Protobuf type {@code Volcengine.Live.Models.Business.DomainListInfo}
 */
public final class DomainListInfo extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:Volcengine.Live.Models.Business.DomainListInfo)
    DomainListInfoOrBuilder {
private static final long serialVersionUID = 0L;
  // Use DomainListInfo.newBuilder() to construct.
  private DomainListInfo(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private DomainListInfo() {
    domainList_ = java.util.Collections.emptyList();
  }

  @Override
  @SuppressWarnings({"unused"})
  protected Object newInstance(
      UnusedPrivateParameter unused) {
    return new DomainListInfo();
  }

  @Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private DomainListInfo(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new 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: {
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              domainList_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            domainList_.add(
                input.readMessage(DomainList.parser(), extensionRegistry));
            break;
          }
          case 16: {

            total_ = input.readInt64();
            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_ = java.util.Collections.unmodifiableList(domainList_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return Domain.internal_static_Volcengine_Live_Models_Business_DomainListInfo_descriptor;
  }

  @Override
  protected FieldAccessorTable
      internalGetFieldAccessorTable() {
    return Domain.internal_static_Volcengine_Live_Models_Business_DomainListInfo_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            DomainListInfo.class, Builder.class);
  }

  public static final int DOMAINLIST_FIELD_NUMBER = 1;
  private java.util.List domainList_;
  /**
   * 
   *域名详细信息列表
   * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ @Override public java.util.List getDomainListList() { return domainList_; } /** *
   *域名详细信息列表
   * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ @Override public java.util.List getDomainListOrBuilderList() { return domainList_; } /** *
   *域名详细信息列表
   * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ @Override public int getDomainListCount() { return domainList_.size(); } /** *
   *域名详细信息列表
   * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ @Override public DomainList getDomainList(int index) { return domainList_.get(index); } /** *
   *域名详细信息列表
   * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ @Override public DomainListOrBuilder getDomainListOrBuilder( int index) { return domainList_.get(index); } public static final int TOTAL_FIELD_NUMBER = 2; private long total_; /** *
   *总记录数。
   * 
* * int64 Total = 2; * @return The total. */ @Override public long getTotal() { return total_; } private byte memoizedIsInitialized = -1; @Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { for (int i = 0; i < domainList_.size(); i++) { output.writeMessage(1, domainList_.get(i)); } if (total_ != 0L) { output.writeInt64(2, total_); } unknownFields.writeTo(output); } @Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < domainList_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, domainList_.get(i)); } if (total_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(2, total_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (!(obj instanceof DomainListInfo)) { return super.equals(obj); } DomainListInfo other = (DomainListInfo) obj; if (!getDomainListList() .equals(other.getDomainListList())) return false; if (getTotal() != other.getTotal()) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (getDomainListCount() > 0) { hash = (37 * hash) + DOMAINLIST_FIELD_NUMBER; hash = (53 * hash) + getDomainListList().hashCode(); } hash = (37 * hash) + TOTAL_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getTotal()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static DomainListInfo parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static DomainListInfo parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static DomainListInfo parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static DomainListInfo parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static DomainListInfo parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static DomainListInfo parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static DomainListInfo parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static DomainListInfo 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 DomainListInfo parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static DomainListInfo 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 DomainListInfo parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static DomainListInfo parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(DomainListInfo prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @Override protected Builder newBuilderForType( BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code Volcengine.Live.Models.Business.DomainListInfo} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:Volcengine.Live.Models.Business.DomainListInfo) DomainListInfoOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return Domain.internal_static_Volcengine_Live_Models_Business_DomainListInfo_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return Domain.internal_static_Volcengine_Live_Models_Business_DomainListInfo_fieldAccessorTable .ensureFieldAccessorsInitialized( DomainListInfo.class, Builder.class); } // Construct using com.volcengine.service.live.model.business.DomainListInfo.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getDomainListFieldBuilder(); } } @Override public Builder clear() { super.clear(); if (domainListBuilder_ == null) { domainList_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { domainListBuilder_.clear(); } total_ = 0L; return this; } @Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return Domain.internal_static_Volcengine_Live_Models_Business_DomainListInfo_descriptor; } @Override public DomainListInfo getDefaultInstanceForType() { return DomainListInfo.getDefaultInstance(); } @Override public DomainListInfo build() { DomainListInfo result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @Override public DomainListInfo buildPartial() { DomainListInfo result = new DomainListInfo(this); int from_bitField0_ = bitField0_; if (domainListBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { domainList_ = java.util.Collections.unmodifiableList(domainList_); bitField0_ = (bitField0_ & ~0x00000001); } result.domainList_ = domainList_; } else { result.domainList_ = domainListBuilder_.build(); } result.total_ = total_; onBuilt(); return result; } @Override public Builder clone() { return super.clone(); } @Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.setField(field, value); } @Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { return super.setRepeatedField(field, index, value); } @Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.addRepeatedField(field, value); } @Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof DomainListInfo) { return mergeFrom((DomainListInfo)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(DomainListInfo other) { if (other == DomainListInfo.getDefaultInstance()) return this; if (domainListBuilder_ == null) { if (!other.domainList_.isEmpty()) { if (domainList_.isEmpty()) { domainList_ = other.domainList_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureDomainListIsMutable(); domainList_.addAll(other.domainList_); } onChanged(); } } else { if (!other.domainList_.isEmpty()) { if (domainListBuilder_.isEmpty()) { domainListBuilder_.dispose(); domainListBuilder_ = null; domainList_ = other.domainList_; bitField0_ = (bitField0_ & ~0x00000001); domainListBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getDomainListFieldBuilder() : null; } else { domainListBuilder_.addAllMessages(other.domainList_); } } } if (other.getTotal() != 0L) { setTotal(other.getTotal()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @Override public final boolean isInitialized() { return true; } @Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { DomainListInfo parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (DomainListInfo) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List domainList_ = java.util.Collections.emptyList(); private void ensureDomainListIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { domainList_ = new java.util.ArrayList(domainList_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilderV3< DomainList, DomainList.Builder, DomainListOrBuilder> domainListBuilder_; /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public java.util.List getDomainListList() { if (domainListBuilder_ == null) { return java.util.Collections.unmodifiableList(domainList_); } else { return domainListBuilder_.getMessageList(); } } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public int getDomainListCount() { if (domainListBuilder_ == null) { return domainList_.size(); } else { return domainListBuilder_.getCount(); } } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public DomainList getDomainList(int index) { if (domainListBuilder_ == null) { return domainList_.get(index); } else { return domainListBuilder_.getMessage(index); } } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder setDomainList( int index, DomainList value) { if (domainListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureDomainListIsMutable(); domainList_.set(index, value); onChanged(); } else { domainListBuilder_.setMessage(index, value); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder setDomainList( int index, DomainList.Builder builderForValue) { if (domainListBuilder_ == null) { ensureDomainListIsMutable(); domainList_.set(index, builderForValue.build()); onChanged(); } else { domainListBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder addDomainList(DomainList value) { if (domainListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureDomainListIsMutable(); domainList_.add(value); onChanged(); } else { domainListBuilder_.addMessage(value); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder addDomainList( int index, DomainList value) { if (domainListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureDomainListIsMutable(); domainList_.add(index, value); onChanged(); } else { domainListBuilder_.addMessage(index, value); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder addDomainList( DomainList.Builder builderForValue) { if (domainListBuilder_ == null) { ensureDomainListIsMutable(); domainList_.add(builderForValue.build()); onChanged(); } else { domainListBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder addDomainList( int index, DomainList.Builder builderForValue) { if (domainListBuilder_ == null) { ensureDomainListIsMutable(); domainList_.add(index, builderForValue.build()); onChanged(); } else { domainListBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder addAllDomainList( Iterable values) { if (domainListBuilder_ == null) { ensureDomainListIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, domainList_); onChanged(); } else { domainListBuilder_.addAllMessages(values); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder clearDomainList() { if (domainListBuilder_ == null) { domainList_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { domainListBuilder_.clear(); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public Builder removeDomainList(int index) { if (domainListBuilder_ == null) { ensureDomainListIsMutable(); domainList_.remove(index); onChanged(); } else { domainListBuilder_.remove(index); } return this; } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public DomainList.Builder getDomainListBuilder( int index) { return getDomainListFieldBuilder().getBuilder(index); } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public DomainListOrBuilder getDomainListOrBuilder( int index) { if (domainListBuilder_ == null) { return domainList_.get(index); } else { return domainListBuilder_.getMessageOrBuilder(index); } } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public java.util.List getDomainListOrBuilderList() { if (domainListBuilder_ != null) { return domainListBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(domainList_); } } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public DomainList.Builder addDomainListBuilder() { return getDomainListFieldBuilder().addBuilder( DomainList.getDefaultInstance()); } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public DomainList.Builder addDomainListBuilder( int index) { return getDomainListFieldBuilder().addBuilder( index, DomainList.getDefaultInstance()); } /** *
     *域名详细信息列表
     * 
* * repeated .Volcengine.Live.Models.Business.DomainList DomainList = 1; */ public java.util.List getDomainListBuilderList() { return getDomainListFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< DomainList, DomainList.Builder, DomainListOrBuilder> getDomainListFieldBuilder() { if (domainListBuilder_ == null) { domainListBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< DomainList, DomainList.Builder, DomainListOrBuilder>( domainList_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); domainList_ = null; } return domainListBuilder_; } private long total_ ; /** *
     *总记录数。
     * 
* * int64 Total = 2; * @return The total. */ @Override public long getTotal() { return total_; } /** *
     *总记录数。
     * 
* * int64 Total = 2; * @param value The total to set. * @return This builder for chaining. */ public Builder setTotal(long value) { total_ = value; onChanged(); return this; } /** *
     *总记录数。
     * 
* * int64 Total = 2; * @return This builder for chaining. */ public Builder clearTotal() { total_ = 0L; onChanged(); return this; } @Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:Volcengine.Live.Models.Business.DomainListInfo) } // @@protoc_insertion_point(class_scope:Volcengine.Live.Models.Business.DomainListInfo) private static final DomainListInfo DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new DomainListInfo(); } public static DomainListInfo getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @Override public DomainListInfo parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new DomainListInfo(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @Override public DomainListInfo getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy