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

cz.proto.TreeJoin Maven / Gradle / Ivy

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

package cz.proto;

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

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private TreeJoin(
      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)) {
              rootOperators_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            rootOperators_.add(
                input.readMessage(cz.proto.Operator.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)) {
        rootOperators_ = java.util.Collections.unmodifiableList(rootOperators_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return cz.proto.OperatorProto.internal_static_cz_proto_TreeJoin_descriptor;
  }

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

  public static final int ROOT_OPERATORS_FIELD_NUMBER = 1;
  private java.util.List rootOperators_;
  /**
   * repeated .cz.proto.Operator root_operators = 1;
   */
  @java.lang.Override
  public java.util.List getRootOperatorsList() {
    return rootOperators_;
  }
  /**
   * repeated .cz.proto.Operator root_operators = 1;
   */
  @java.lang.Override
  public java.util.List 
      getRootOperatorsOrBuilderList() {
    return rootOperators_;
  }
  /**
   * repeated .cz.proto.Operator root_operators = 1;
   */
  @java.lang.Override
  public int getRootOperatorsCount() {
    return rootOperators_.size();
  }
  /**
   * repeated .cz.proto.Operator root_operators = 1;
   */
  @java.lang.Override
  public cz.proto.Operator getRootOperators(int index) {
    return rootOperators_.get(index);
  }
  /**
   * repeated .cz.proto.Operator root_operators = 1;
   */
  @java.lang.Override
  public cz.proto.OperatorOrBuilder getRootOperatorsOrBuilder(
      int index) {
    return rootOperators_.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 < rootOperators_.size(); i++) {
      output.writeMessage(1, rootOperators_.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 < rootOperators_.size(); i++) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, rootOperators_.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.TreeJoin)) {
      return super.equals(obj);
    }
    cz.proto.TreeJoin other = (cz.proto.TreeJoin) obj;

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

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

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

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

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

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

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

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

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

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

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

    private com.google.protobuf.RepeatedFieldBuilderV3<
        cz.proto.Operator, cz.proto.Operator.Builder, cz.proto.OperatorOrBuilder> rootOperatorsBuilder_;

    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public java.util.List getRootOperatorsList() {
      if (rootOperatorsBuilder_ == null) {
        return java.util.Collections.unmodifiableList(rootOperators_);
      } else {
        return rootOperatorsBuilder_.getMessageList();
      }
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public int getRootOperatorsCount() {
      if (rootOperatorsBuilder_ == null) {
        return rootOperators_.size();
      } else {
        return rootOperatorsBuilder_.getCount();
      }
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public cz.proto.Operator getRootOperators(int index) {
      if (rootOperatorsBuilder_ == null) {
        return rootOperators_.get(index);
      } else {
        return rootOperatorsBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder setRootOperators(
        int index, cz.proto.Operator value) {
      if (rootOperatorsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureRootOperatorsIsMutable();
        rootOperators_.set(index, value);
        onChanged();
      } else {
        rootOperatorsBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder setRootOperators(
        int index, cz.proto.Operator.Builder builderForValue) {
      if (rootOperatorsBuilder_ == null) {
        ensureRootOperatorsIsMutable();
        rootOperators_.set(index, builderForValue.build());
        onChanged();
      } else {
        rootOperatorsBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder addRootOperators(cz.proto.Operator value) {
      if (rootOperatorsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureRootOperatorsIsMutable();
        rootOperators_.add(value);
        onChanged();
      } else {
        rootOperatorsBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder addRootOperators(
        int index, cz.proto.Operator value) {
      if (rootOperatorsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureRootOperatorsIsMutable();
        rootOperators_.add(index, value);
        onChanged();
      } else {
        rootOperatorsBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder addRootOperators(
        cz.proto.Operator.Builder builderForValue) {
      if (rootOperatorsBuilder_ == null) {
        ensureRootOperatorsIsMutable();
        rootOperators_.add(builderForValue.build());
        onChanged();
      } else {
        rootOperatorsBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder addRootOperators(
        int index, cz.proto.Operator.Builder builderForValue) {
      if (rootOperatorsBuilder_ == null) {
        ensureRootOperatorsIsMutable();
        rootOperators_.add(index, builderForValue.build());
        onChanged();
      } else {
        rootOperatorsBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder addAllRootOperators(
        java.lang.Iterable values) {
      if (rootOperatorsBuilder_ == null) {
        ensureRootOperatorsIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, rootOperators_);
        onChanged();
      } else {
        rootOperatorsBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder clearRootOperators() {
      if (rootOperatorsBuilder_ == null) {
        rootOperators_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
        onChanged();
      } else {
        rootOperatorsBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public Builder removeRootOperators(int index) {
      if (rootOperatorsBuilder_ == null) {
        ensureRootOperatorsIsMutable();
        rootOperators_.remove(index);
        onChanged();
      } else {
        rootOperatorsBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public cz.proto.Operator.Builder getRootOperatorsBuilder(
        int index) {
      return getRootOperatorsFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public cz.proto.OperatorOrBuilder getRootOperatorsOrBuilder(
        int index) {
      if (rootOperatorsBuilder_ == null) {
        return rootOperators_.get(index);  } else {
        return rootOperatorsBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public java.util.List 
         getRootOperatorsOrBuilderList() {
      if (rootOperatorsBuilder_ != null) {
        return rootOperatorsBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(rootOperators_);
      }
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public cz.proto.Operator.Builder addRootOperatorsBuilder() {
      return getRootOperatorsFieldBuilder().addBuilder(
          cz.proto.Operator.getDefaultInstance());
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public cz.proto.Operator.Builder addRootOperatorsBuilder(
        int index) {
      return getRootOperatorsFieldBuilder().addBuilder(
          index, cz.proto.Operator.getDefaultInstance());
    }
    /**
     * repeated .cz.proto.Operator root_operators = 1;
     */
    public java.util.List 
         getRootOperatorsBuilderList() {
      return getRootOperatorsFieldBuilder().getBuilderList();
    }
    private com.google.protobuf.RepeatedFieldBuilderV3<
        cz.proto.Operator, cz.proto.Operator.Builder, cz.proto.OperatorOrBuilder> 
        getRootOperatorsFieldBuilder() {
      if (rootOperatorsBuilder_ == null) {
        rootOperatorsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
            cz.proto.Operator, cz.proto.Operator.Builder, cz.proto.OperatorOrBuilder>(
                rootOperators_,
                ((bitField0_ & 0x00000001) != 0),
                getParentForChildren(),
                isClean());
        rootOperators_ = null;
      }
      return rootOperatorsBuilder_;
    }
    @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.TreeJoin)
  }

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

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

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy