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

cz.proto.ObjectIdentifierList Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: object_identifier.proto

package cz.proto;

/**
 * Protobuf type {@code cz.proto.ObjectIdentifierList}
 */
public final class ObjectIdentifierList extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:cz.proto.ObjectIdentifierList)
    ObjectIdentifierListOrBuilder {
private static final long serialVersionUID = 0L;
  // Use ObjectIdentifierList.newBuilder() to construct.
  private ObjectIdentifierList(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private ObjectIdentifierList() {
    identifiers_ = java.util.Collections.emptyList();
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private ObjectIdentifierList(
      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: {
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              identifiers_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            identifiers_.add(
                input.readMessage(cz.proto.ObjectIdentifier.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)) {
        identifiers_ = java.util.Collections.unmodifiableList(identifiers_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return cz.proto.ObjectIdentifierOuterClass.internal_static_cz_proto_ObjectIdentifierList_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return cz.proto.ObjectIdentifierOuterClass.internal_static_cz_proto_ObjectIdentifierList_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            cz.proto.ObjectIdentifierList.class, cz.proto.ObjectIdentifierList.Builder.class);
  }

  public static final int IDENTIFIERS_FIELD_NUMBER = 1;
  private java.util.List identifiers_;
  /**
   * repeated .cz.proto.ObjectIdentifier identifiers = 1;
   */
  @java.lang.Override
  public java.util.List getIdentifiersList() {
    return identifiers_;
  }
  /**
   * repeated .cz.proto.ObjectIdentifier identifiers = 1;
   */
  @java.lang.Override
  public java.util.List 
      getIdentifiersOrBuilderList() {
    return identifiers_;
  }
  /**
   * repeated .cz.proto.ObjectIdentifier identifiers = 1;
   */
  @java.lang.Override
  public int getIdentifiersCount() {
    return identifiers_.size();
  }
  /**
   * repeated .cz.proto.ObjectIdentifier identifiers = 1;
   */
  @java.lang.Override
  public cz.proto.ObjectIdentifier getIdentifiers(int index) {
    return identifiers_.get(index);
  }
  /**
   * repeated .cz.proto.ObjectIdentifier identifiers = 1;
   */
  @java.lang.Override
  public cz.proto.ObjectIdentifierOrBuilder getIdentifiersOrBuilder(
      int index) {
    return identifiers_.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 {
    for (int i = 0; i < identifiers_.size(); i++) {
      output.writeMessage(1, identifiers_.get(i));
    }
    unknownFields.writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    for (int i = 0; i < identifiers_.size(); i++) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, identifiers_.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 cz.proto.ObjectIdentifierList)) {
      return super.equals(obj);
    }
    cz.proto.ObjectIdentifierList other = (cz.proto.ObjectIdentifierList) obj;

    if (!getIdentifiersList()
        .equals(other.getIdentifiersList())) 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 (getIdentifiersCount() > 0) {
      hash = (37 * hash) + IDENTIFIERS_FIELD_NUMBER;
      hash = (53 * hash) + getIdentifiersList().hashCode();
    }
    hash = (29 * hash) + unknownFields.hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static cz.proto.ObjectIdentifierList parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static cz.proto.ObjectIdentifierList parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static cz.proto.ObjectIdentifierList parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static cz.proto.ObjectIdentifierList parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static cz.proto.ObjectIdentifierList parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static cz.proto.ObjectIdentifierList parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static cz.proto.ObjectIdentifierList parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static cz.proto.ObjectIdentifierList 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 cz.proto.ObjectIdentifierList parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static cz.proto.ObjectIdentifierList 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 cz.proto.ObjectIdentifierList parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static cz.proto.ObjectIdentifierList 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(cz.proto.ObjectIdentifierList 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 cz.proto.ObjectIdentifierList}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:cz.proto.ObjectIdentifierList)
      cz.proto.ObjectIdentifierListOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return cz.proto.ObjectIdentifierOuterClass.internal_static_cz_proto_ObjectIdentifierList_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return cz.proto.ObjectIdentifierOuterClass.internal_static_cz_proto_ObjectIdentifierList_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              cz.proto.ObjectIdentifierList.class, cz.proto.ObjectIdentifierList.Builder.class);
    }

    // Construct using cz.proto.ObjectIdentifierList.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
        getIdentifiersFieldBuilder();
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      if (identifiersBuilder_ == null) {
        identifiers_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
      } else {
        identifiersBuilder_.clear();
      }
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return cz.proto.ObjectIdentifierOuterClass.internal_static_cz_proto_ObjectIdentifierList_descriptor;
    }

    @java.lang.Override
    public cz.proto.ObjectIdentifierList getDefaultInstanceForType() {
      return cz.proto.ObjectIdentifierList.getDefaultInstance();
    }

    @java.lang.Override
    public cz.proto.ObjectIdentifierList build() {
      cz.proto.ObjectIdentifierList result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public cz.proto.ObjectIdentifierList buildPartial() {
      cz.proto.ObjectIdentifierList result = new cz.proto.ObjectIdentifierList(this);
      int from_bitField0_ = bitField0_;
      if (identifiersBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0)) {
          identifiers_ = java.util.Collections.unmodifiableList(identifiers_);
          bitField0_ = (bitField0_ & ~0x00000001);
        }
        result.identifiers_ = identifiers_;
      } else {
        result.identifiers_ = identifiersBuilder_.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 cz.proto.ObjectIdentifierList) {
        return mergeFrom((cz.proto.ObjectIdentifierList)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(cz.proto.ObjectIdentifierList other) {
      if (other == cz.proto.ObjectIdentifierList.getDefaultInstance()) return this;
      if (identifiersBuilder_ == null) {
        if (!other.identifiers_.isEmpty()) {
          if (identifiers_.isEmpty()) {
            identifiers_ = other.identifiers_;
            bitField0_ = (bitField0_ & ~0x00000001);
          } else {
            ensureIdentifiersIsMutable();
            identifiers_.addAll(other.identifiers_);
          }
          onChanged();
        }
      } else {
        if (!other.identifiers_.isEmpty()) {
          if (identifiersBuilder_.isEmpty()) {
            identifiersBuilder_.dispose();
            identifiersBuilder_ = null;
            identifiers_ = other.identifiers_;
            bitField0_ = (bitField0_ & ~0x00000001);
            identifiersBuilder_ = 
              com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getIdentifiersFieldBuilder() : null;
          } else {
            identifiersBuilder_.addAllMessages(other.identifiers_);
          }
        }
      }
      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 {
      cz.proto.ObjectIdentifierList parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (cz.proto.ObjectIdentifierList) e.getUnfinishedMessage();
        throw e.unwrapIOException();
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }
    private int bitField0_;

    private java.util.List identifiers_ =
      java.util.Collections.emptyList();
    private void ensureIdentifiersIsMutable() {
      if (!((bitField0_ & 0x00000001) != 0)) {
        identifiers_ = new java.util.ArrayList(identifiers_);
        bitField0_ |= 0x00000001;
       }
    }

    private com.google.protobuf.RepeatedFieldBuilderV3<
        cz.proto.ObjectIdentifier, cz.proto.ObjectIdentifier.Builder, cz.proto.ObjectIdentifierOrBuilder> identifiersBuilder_;

    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public java.util.List getIdentifiersList() {
      if (identifiersBuilder_ == null) {
        return java.util.Collections.unmodifiableList(identifiers_);
      } else {
        return identifiersBuilder_.getMessageList();
      }
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public int getIdentifiersCount() {
      if (identifiersBuilder_ == null) {
        return identifiers_.size();
      } else {
        return identifiersBuilder_.getCount();
      }
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public cz.proto.ObjectIdentifier getIdentifiers(int index) {
      if (identifiersBuilder_ == null) {
        return identifiers_.get(index);
      } else {
        return identifiersBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder setIdentifiers(
        int index, cz.proto.ObjectIdentifier value) {
      if (identifiersBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureIdentifiersIsMutable();
        identifiers_.set(index, value);
        onChanged();
      } else {
        identifiersBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder setIdentifiers(
        int index, cz.proto.ObjectIdentifier.Builder builderForValue) {
      if (identifiersBuilder_ == null) {
        ensureIdentifiersIsMutable();
        identifiers_.set(index, builderForValue.build());
        onChanged();
      } else {
        identifiersBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder addIdentifiers(cz.proto.ObjectIdentifier value) {
      if (identifiersBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureIdentifiersIsMutable();
        identifiers_.add(value);
        onChanged();
      } else {
        identifiersBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder addIdentifiers(
        int index, cz.proto.ObjectIdentifier value) {
      if (identifiersBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureIdentifiersIsMutable();
        identifiers_.add(index, value);
        onChanged();
      } else {
        identifiersBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder addIdentifiers(
        cz.proto.ObjectIdentifier.Builder builderForValue) {
      if (identifiersBuilder_ == null) {
        ensureIdentifiersIsMutable();
        identifiers_.add(builderForValue.build());
        onChanged();
      } else {
        identifiersBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder addIdentifiers(
        int index, cz.proto.ObjectIdentifier.Builder builderForValue) {
      if (identifiersBuilder_ == null) {
        ensureIdentifiersIsMutable();
        identifiers_.add(index, builderForValue.build());
        onChanged();
      } else {
        identifiersBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder addAllIdentifiers(
        java.lang.Iterable values) {
      if (identifiersBuilder_ == null) {
        ensureIdentifiersIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, identifiers_);
        onChanged();
      } else {
        identifiersBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder clearIdentifiers() {
      if (identifiersBuilder_ == null) {
        identifiers_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
        onChanged();
      } else {
        identifiersBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public Builder removeIdentifiers(int index) {
      if (identifiersBuilder_ == null) {
        ensureIdentifiersIsMutable();
        identifiers_.remove(index);
        onChanged();
      } else {
        identifiersBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public cz.proto.ObjectIdentifier.Builder getIdentifiersBuilder(
        int index) {
      return getIdentifiersFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public cz.proto.ObjectIdentifierOrBuilder getIdentifiersOrBuilder(
        int index) {
      if (identifiersBuilder_ == null) {
        return identifiers_.get(index);  } else {
        return identifiersBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public java.util.List 
         getIdentifiersOrBuilderList() {
      if (identifiersBuilder_ != null) {
        return identifiersBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(identifiers_);
      }
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public cz.proto.ObjectIdentifier.Builder addIdentifiersBuilder() {
      return getIdentifiersFieldBuilder().addBuilder(
          cz.proto.ObjectIdentifier.getDefaultInstance());
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public cz.proto.ObjectIdentifier.Builder addIdentifiersBuilder(
        int index) {
      return getIdentifiersFieldBuilder().addBuilder(
          index, cz.proto.ObjectIdentifier.getDefaultInstance());
    }
    /**
     * repeated .cz.proto.ObjectIdentifier identifiers = 1;
     */
    public java.util.List 
         getIdentifiersBuilderList() {
      return getIdentifiersFieldBuilder().getBuilderList();
    }
    private com.google.protobuf.RepeatedFieldBuilderV3<
        cz.proto.ObjectIdentifier, cz.proto.ObjectIdentifier.Builder, cz.proto.ObjectIdentifierOrBuilder> 
        getIdentifiersFieldBuilder() {
      if (identifiersBuilder_ == null) {
        identifiersBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
            cz.proto.ObjectIdentifier, cz.proto.ObjectIdentifier.Builder, cz.proto.ObjectIdentifierOrBuilder>(
                identifiers_,
                ((bitField0_ & 0x00000001) != 0),
                getParentForChildren(),
                isClean());
        identifiers_ = null;
      }
      return identifiersBuilder_;
    }
    @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:cz.proto.ObjectIdentifierList)
  }

  // @@protoc_insertion_point(class_scope:cz.proto.ObjectIdentifierList)
  private static final cz.proto.ObjectIdentifierList DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new cz.proto.ObjectIdentifierList();
  }

  public static cz.proto.ObjectIdentifierList getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public ObjectIdentifierList parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return new ObjectIdentifierList(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 cz.proto.ObjectIdentifierList getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy