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

xyz.block.ftl.v1.schema.Module Maven / Gradle / Ivy

There is a newer version: 0.368.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: xyz/block/ftl/v1/schema/schema.proto

// Protobuf Java Version: 3.25.4
package xyz.block.ftl.v1.schema;

/**
 * Protobuf type {@code xyz.block.ftl.v1.schema.Module}
 */
public final class Module extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:xyz.block.ftl.v1.schema.Module)
    ModuleOrBuilder {
private static final long serialVersionUID = 0L;
  // Use Module.newBuilder() to construct.
  private Module(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private Module() {
    comments_ =
        com.google.protobuf.LazyStringArrayList.emptyList();
    name_ = "";
    decls_ = java.util.Collections.emptyList();
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Module_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Module_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            xyz.block.ftl.v1.schema.Module.class, xyz.block.ftl.v1.schema.Module.Builder.class);
  }

  private int bitField0_;
  public static final int RUNTIME_FIELD_NUMBER = 31634;
  private xyz.block.ftl.v1.schema.ModuleRuntime runtime_;
  /**
   * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
   * @return Whether the runtime field is set.
   */
  @java.lang.Override
  public boolean hasRuntime() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
   * @return The runtime.
   */
  @java.lang.Override
  public xyz.block.ftl.v1.schema.ModuleRuntime getRuntime() {
    return runtime_ == null ? xyz.block.ftl.v1.schema.ModuleRuntime.getDefaultInstance() : runtime_;
  }
  /**
   * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
   */
  @java.lang.Override
  public xyz.block.ftl.v1.schema.ModuleRuntimeOrBuilder getRuntimeOrBuilder() {
    return runtime_ == null ? xyz.block.ftl.v1.schema.ModuleRuntime.getDefaultInstance() : runtime_;
  }

  public static final int POS_FIELD_NUMBER = 1;
  private xyz.block.ftl.v1.schema.Position pos_;
  /**
   * optional .xyz.block.ftl.v1.schema.Position pos = 1;
   * @return Whether the pos field is set.
   */
  @java.lang.Override
  public boolean hasPos() {
    return ((bitField0_ & 0x00000002) != 0);
  }
  /**
   * optional .xyz.block.ftl.v1.schema.Position pos = 1;
   * @return The pos.
   */
  @java.lang.Override
  public xyz.block.ftl.v1.schema.Position getPos() {
    return pos_ == null ? xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
  }
  /**
   * optional .xyz.block.ftl.v1.schema.Position pos = 1;
   */
  @java.lang.Override
  public xyz.block.ftl.v1.schema.PositionOrBuilder getPosOrBuilder() {
    return pos_ == null ? xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
  }

  public static final int COMMENTS_FIELD_NUMBER = 2;
  @SuppressWarnings("serial")
  private com.google.protobuf.LazyStringArrayList comments_ =
      com.google.protobuf.LazyStringArrayList.emptyList();
  /**
   * repeated string comments = 2;
   * @return A list containing the comments.
   */
  public com.google.protobuf.ProtocolStringList
      getCommentsList() {
    return comments_;
  }
  /**
   * repeated string comments = 2;
   * @return The count of comments.
   */
  public int getCommentsCount() {
    return comments_.size();
  }
  /**
   * repeated string comments = 2;
   * @param index The index of the element to return.
   * @return The comments at the given index.
   */
  public java.lang.String getComments(int index) {
    return comments_.get(index);
  }
  /**
   * repeated string comments = 2;
   * @param index The index of the value to return.
   * @return The bytes of the comments at the given index.
   */
  public com.google.protobuf.ByteString
      getCommentsBytes(int index) {
    return comments_.getByteString(index);
  }

  public static final int BUILTIN_FIELD_NUMBER = 3;
  private boolean builtin_ = false;
  /**
   * bool builtin = 3;
   * @return The builtin.
   */
  @java.lang.Override
  public boolean getBuiltin() {
    return builtin_;
  }

  public static final int NAME_FIELD_NUMBER = 4;
  @SuppressWarnings("serial")
  private volatile java.lang.Object name_ = "";
  /**
   * string name = 4;
   * @return The name.
   */
  @java.lang.Override
  public java.lang.String getName() {
    java.lang.Object ref = name_;
    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();
      name_ = s;
      return s;
    }
  }
  /**
   * string name = 4;
   * @return The bytes for name.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getNameBytes() {
    java.lang.Object ref = name_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      name_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int DECLS_FIELD_NUMBER = 5;
  @SuppressWarnings("serial")
  private java.util.List decls_;
  /**
   * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
   */
  @java.lang.Override
  public java.util.List getDeclsList() {
    return decls_;
  }
  /**
   * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
   */
  @java.lang.Override
  public java.util.List 
      getDeclsOrBuilderList() {
    return decls_;
  }
  /**
   * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
   */
  @java.lang.Override
  public int getDeclsCount() {
    return decls_.size();
  }
  /**
   * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
   */
  @java.lang.Override
  public xyz.block.ftl.v1.schema.Decl getDecls(int index) {
    return decls_.get(index);
  }
  /**
   * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
   */
  @java.lang.Override
  public xyz.block.ftl.v1.schema.DeclOrBuilder getDeclsOrBuilder(
      int index) {
    return decls_.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 (((bitField0_ & 0x00000002) != 0)) {
      output.writeMessage(1, getPos());
    }
    for (int i = 0; i < comments_.size(); i++) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 2, comments_.getRaw(i));
    }
    if (builtin_ != false) {
      output.writeBool(3, builtin_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 4, name_);
    }
    for (int i = 0; i < decls_.size(); i++) {
      output.writeMessage(5, decls_.get(i));
    }
    if (((bitField0_ & 0x00000001) != 0)) {
      output.writeMessage(31634, getRuntime());
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (((bitField0_ & 0x00000002) != 0)) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, getPos());
    }
    {
      int dataSize = 0;
      for (int i = 0; i < comments_.size(); i++) {
        dataSize += computeStringSizeNoTag(comments_.getRaw(i));
      }
      size += dataSize;
      size += 1 * getCommentsList().size();
    }
    if (builtin_ != false) {
      size += com.google.protobuf.CodedOutputStream
        .computeBoolSize(3, builtin_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, name_);
    }
    for (int i = 0; i < decls_.size(); i++) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(5, decls_.get(i));
    }
    if (((bitField0_ & 0x00000001) != 0)) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(31634, getRuntime());
    }
    size += getUnknownFields().getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
     return true;
    }
    if (!(obj instanceof xyz.block.ftl.v1.schema.Module)) {
      return super.equals(obj);
    }
    xyz.block.ftl.v1.schema.Module other = (xyz.block.ftl.v1.schema.Module) obj;

    if (hasRuntime() != other.hasRuntime()) return false;
    if (hasRuntime()) {
      if (!getRuntime()
          .equals(other.getRuntime())) return false;
    }
    if (hasPos() != other.hasPos()) return false;
    if (hasPos()) {
      if (!getPos()
          .equals(other.getPos())) return false;
    }
    if (!getCommentsList()
        .equals(other.getCommentsList())) return false;
    if (getBuiltin()
        != other.getBuiltin()) return false;
    if (!getName()
        .equals(other.getName())) return false;
    if (!getDeclsList()
        .equals(other.getDeclsList())) return false;
    if (!getUnknownFields().equals(other.getUnknownFields())) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (hasRuntime()) {
      hash = (37 * hash) + RUNTIME_FIELD_NUMBER;
      hash = (53 * hash) + getRuntime().hashCode();
    }
    if (hasPos()) {
      hash = (37 * hash) + POS_FIELD_NUMBER;
      hash = (53 * hash) + getPos().hashCode();
    }
    if (getCommentsCount() > 0) {
      hash = (37 * hash) + COMMENTS_FIELD_NUMBER;
      hash = (53 * hash) + getCommentsList().hashCode();
    }
    hash = (37 * hash) + BUILTIN_FIELD_NUMBER;
    hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
        getBuiltin());
    hash = (37 * hash) + NAME_FIELD_NUMBER;
    hash = (53 * hash) + getName().hashCode();
    if (getDeclsCount() > 0) {
      hash = (37 * hash) + DECLS_FIELD_NUMBER;
      hash = (53 * hash) + getDeclsList().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static xyz.block.ftl.v1.schema.Module parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static xyz.block.ftl.v1.schema.Module parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static xyz.block.ftl.v1.schema.Module parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static xyz.block.ftl.v1.schema.Module parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static xyz.block.ftl.v1.schema.Module parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static xyz.block.ftl.v1.schema.Module parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static xyz.block.ftl.v1.schema.Module parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static xyz.block.ftl.v1.schema.Module 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 xyz.block.ftl.v1.schema.Module parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }

  public static xyz.block.ftl.v1.schema.Module 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 xyz.block.ftl.v1.schema.Module parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static xyz.block.ftl.v1.schema.Module 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(xyz.block.ftl.v1.schema.Module 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 xyz.block.ftl.v1.schema.Module}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:xyz.block.ftl.v1.schema.Module)
      xyz.block.ftl.v1.schema.ModuleOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Module_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Module_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              xyz.block.ftl.v1.schema.Module.class, xyz.block.ftl.v1.schema.Module.Builder.class);
    }

    // Construct using xyz.block.ftl.v1.schema.Module.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
        getRuntimeFieldBuilder();
        getPosFieldBuilder();
        getDeclsFieldBuilder();
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      runtime_ = null;
      if (runtimeBuilder_ != null) {
        runtimeBuilder_.dispose();
        runtimeBuilder_ = null;
      }
      pos_ = null;
      if (posBuilder_ != null) {
        posBuilder_.dispose();
        posBuilder_ = null;
      }
      comments_ =
          com.google.protobuf.LazyStringArrayList.emptyList();
      builtin_ = false;
      name_ = "";
      if (declsBuilder_ == null) {
        decls_ = java.util.Collections.emptyList();
      } else {
        decls_ = null;
        declsBuilder_.clear();
      }
      bitField0_ = (bitField0_ & ~0x00000020);
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Module_descriptor;
    }

    @java.lang.Override
    public xyz.block.ftl.v1.schema.Module getDefaultInstanceForType() {
      return xyz.block.ftl.v1.schema.Module.getDefaultInstance();
    }

    @java.lang.Override
    public xyz.block.ftl.v1.schema.Module build() {
      xyz.block.ftl.v1.schema.Module result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public xyz.block.ftl.v1.schema.Module buildPartial() {
      xyz.block.ftl.v1.schema.Module result = new xyz.block.ftl.v1.schema.Module(this);
      buildPartialRepeatedFields(result);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartialRepeatedFields(xyz.block.ftl.v1.schema.Module result) {
      if (declsBuilder_ == null) {
        if (((bitField0_ & 0x00000020) != 0)) {
          decls_ = java.util.Collections.unmodifiableList(decls_);
          bitField0_ = (bitField0_ & ~0x00000020);
        }
        result.decls_ = decls_;
      } else {
        result.decls_ = declsBuilder_.build();
      }
    }

    private void buildPartial0(xyz.block.ftl.v1.schema.Module result) {
      int from_bitField0_ = bitField0_;
      int to_bitField0_ = 0;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.runtime_ = runtimeBuilder_ == null
            ? runtime_
            : runtimeBuilder_.build();
        to_bitField0_ |= 0x00000001;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.pos_ = posBuilder_ == null
            ? pos_
            : posBuilder_.build();
        to_bitField0_ |= 0x00000002;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        comments_.makeImmutable();
        result.comments_ = comments_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.builtin_ = builtin_;
      }
      if (((from_bitField0_ & 0x00000010) != 0)) {
        result.name_ = name_;
      }
      result.bitField0_ |= to_bitField0_;
    }

    @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 xyz.block.ftl.v1.schema.Module) {
        return mergeFrom((xyz.block.ftl.v1.schema.Module)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(xyz.block.ftl.v1.schema.Module other) {
      if (other == xyz.block.ftl.v1.schema.Module.getDefaultInstance()) return this;
      if (other.hasRuntime()) {
        mergeRuntime(other.getRuntime());
      }
      if (other.hasPos()) {
        mergePos(other.getPos());
      }
      if (!other.comments_.isEmpty()) {
        if (comments_.isEmpty()) {
          comments_ = other.comments_;
          bitField0_ |= 0x00000004;
        } else {
          ensureCommentsIsMutable();
          comments_.addAll(other.comments_);
        }
        onChanged();
      }
      if (other.getBuiltin() != false) {
        setBuiltin(other.getBuiltin());
      }
      if (!other.getName().isEmpty()) {
        name_ = other.name_;
        bitField0_ |= 0x00000010;
        onChanged();
      }
      if (declsBuilder_ == null) {
        if (!other.decls_.isEmpty()) {
          if (decls_.isEmpty()) {
            decls_ = other.decls_;
            bitField0_ = (bitField0_ & ~0x00000020);
          } else {
            ensureDeclsIsMutable();
            decls_.addAll(other.decls_);
          }
          onChanged();
        }
      } else {
        if (!other.decls_.isEmpty()) {
          if (declsBuilder_.isEmpty()) {
            declsBuilder_.dispose();
            declsBuilder_ = null;
            decls_ = other.decls_;
            bitField0_ = (bitField0_ & ~0x00000020);
            declsBuilder_ = 
              com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getDeclsFieldBuilder() : null;
          } else {
            declsBuilder_.addAllMessages(other.decls_);
          }
        }
      }
      this.mergeUnknownFields(other.getUnknownFields());
      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 {
      if (extensionRegistry == null) {
        throw new java.lang.NullPointerException();
      }
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            case 10: {
              input.readMessage(
                  getPosFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000002;
              break;
            } // case 10
            case 18: {
              java.lang.String s = input.readStringRequireUtf8();
              ensureCommentsIsMutable();
              comments_.add(s);
              break;
            } // case 18
            case 24: {
              builtin_ = input.readBool();
              bitField0_ |= 0x00000008;
              break;
            } // case 24
            case 34: {
              name_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000010;
              break;
            } // case 34
            case 42: {
              xyz.block.ftl.v1.schema.Decl m =
                  input.readMessage(
                      xyz.block.ftl.v1.schema.Decl.parser(),
                      extensionRegistry);
              if (declsBuilder_ == null) {
                ensureDeclsIsMutable();
                decls_.add(m);
              } else {
                declsBuilder_.addMessage(m);
              }
              break;
            } // case 42
            case 253074: {
              input.readMessage(
                  getRuntimeFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000001;
              break;
            } // case 253074
            default: {
              if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                done = true; // was an endgroup tag
              }
              break;
            } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }
    private int bitField0_;

    private xyz.block.ftl.v1.schema.ModuleRuntime runtime_;
    private com.google.protobuf.SingleFieldBuilderV3<
        xyz.block.ftl.v1.schema.ModuleRuntime, xyz.block.ftl.v1.schema.ModuleRuntime.Builder, xyz.block.ftl.v1.schema.ModuleRuntimeOrBuilder> runtimeBuilder_;
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     * @return Whether the runtime field is set.
     */
    public boolean hasRuntime() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     * @return The runtime.
     */
    public xyz.block.ftl.v1.schema.ModuleRuntime getRuntime() {
      if (runtimeBuilder_ == null) {
        return runtime_ == null ? xyz.block.ftl.v1.schema.ModuleRuntime.getDefaultInstance() : runtime_;
      } else {
        return runtimeBuilder_.getMessage();
      }
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     */
    public Builder setRuntime(xyz.block.ftl.v1.schema.ModuleRuntime value) {
      if (runtimeBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        runtime_ = value;
      } else {
        runtimeBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     */
    public Builder setRuntime(
        xyz.block.ftl.v1.schema.ModuleRuntime.Builder builderForValue) {
      if (runtimeBuilder_ == null) {
        runtime_ = builderForValue.build();
      } else {
        runtimeBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     */
    public Builder mergeRuntime(xyz.block.ftl.v1.schema.ModuleRuntime value) {
      if (runtimeBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0) &&
          runtime_ != null &&
          runtime_ != xyz.block.ftl.v1.schema.ModuleRuntime.getDefaultInstance()) {
          getRuntimeBuilder().mergeFrom(value);
        } else {
          runtime_ = value;
        }
      } else {
        runtimeBuilder_.mergeFrom(value);
      }
      if (runtime_ != null) {
        bitField0_ |= 0x00000001;
        onChanged();
      }
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     */
    public Builder clearRuntime() {
      bitField0_ = (bitField0_ & ~0x00000001);
      runtime_ = null;
      if (runtimeBuilder_ != null) {
        runtimeBuilder_.dispose();
        runtimeBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     */
    public xyz.block.ftl.v1.schema.ModuleRuntime.Builder getRuntimeBuilder() {
      bitField0_ |= 0x00000001;
      onChanged();
      return getRuntimeFieldBuilder().getBuilder();
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     */
    public xyz.block.ftl.v1.schema.ModuleRuntimeOrBuilder getRuntimeOrBuilder() {
      if (runtimeBuilder_ != null) {
        return runtimeBuilder_.getMessageOrBuilder();
      } else {
        return runtime_ == null ?
            xyz.block.ftl.v1.schema.ModuleRuntime.getDefaultInstance() : runtime_;
      }
    }
    /**
     * optional .xyz.block.ftl.v1.schema.ModuleRuntime runtime = 31634;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        xyz.block.ftl.v1.schema.ModuleRuntime, xyz.block.ftl.v1.schema.ModuleRuntime.Builder, xyz.block.ftl.v1.schema.ModuleRuntimeOrBuilder> 
        getRuntimeFieldBuilder() {
      if (runtimeBuilder_ == null) {
        runtimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            xyz.block.ftl.v1.schema.ModuleRuntime, xyz.block.ftl.v1.schema.ModuleRuntime.Builder, xyz.block.ftl.v1.schema.ModuleRuntimeOrBuilder>(
                getRuntime(),
                getParentForChildren(),
                isClean());
        runtime_ = null;
      }
      return runtimeBuilder_;
    }

    private xyz.block.ftl.v1.schema.Position pos_;
    private com.google.protobuf.SingleFieldBuilderV3<
        xyz.block.ftl.v1.schema.Position, xyz.block.ftl.v1.schema.Position.Builder, xyz.block.ftl.v1.schema.PositionOrBuilder> posBuilder_;
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     * @return Whether the pos field is set.
     */
    public boolean hasPos() {
      return ((bitField0_ & 0x00000002) != 0);
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     * @return The pos.
     */
    public xyz.block.ftl.v1.schema.Position getPos() {
      if (posBuilder_ == null) {
        return pos_ == null ? xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
      } else {
        return posBuilder_.getMessage();
      }
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     */
    public Builder setPos(xyz.block.ftl.v1.schema.Position value) {
      if (posBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        pos_ = value;
      } else {
        posBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     */
    public Builder setPos(
        xyz.block.ftl.v1.schema.Position.Builder builderForValue) {
      if (posBuilder_ == null) {
        pos_ = builderForValue.build();
      } else {
        posBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     */
    public Builder mergePos(xyz.block.ftl.v1.schema.Position value) {
      if (posBuilder_ == null) {
        if (((bitField0_ & 0x00000002) != 0) &&
          pos_ != null &&
          pos_ != xyz.block.ftl.v1.schema.Position.getDefaultInstance()) {
          getPosBuilder().mergeFrom(value);
        } else {
          pos_ = value;
        }
      } else {
        posBuilder_.mergeFrom(value);
      }
      if (pos_ != null) {
        bitField0_ |= 0x00000002;
        onChanged();
      }
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     */
    public Builder clearPos() {
      bitField0_ = (bitField0_ & ~0x00000002);
      pos_ = null;
      if (posBuilder_ != null) {
        posBuilder_.dispose();
        posBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     */
    public xyz.block.ftl.v1.schema.Position.Builder getPosBuilder() {
      bitField0_ |= 0x00000002;
      onChanged();
      return getPosFieldBuilder().getBuilder();
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     */
    public xyz.block.ftl.v1.schema.PositionOrBuilder getPosOrBuilder() {
      if (posBuilder_ != null) {
        return posBuilder_.getMessageOrBuilder();
      } else {
        return pos_ == null ?
            xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
      }
    }
    /**
     * optional .xyz.block.ftl.v1.schema.Position pos = 1;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        xyz.block.ftl.v1.schema.Position, xyz.block.ftl.v1.schema.Position.Builder, xyz.block.ftl.v1.schema.PositionOrBuilder> 
        getPosFieldBuilder() {
      if (posBuilder_ == null) {
        posBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            xyz.block.ftl.v1.schema.Position, xyz.block.ftl.v1.schema.Position.Builder, xyz.block.ftl.v1.schema.PositionOrBuilder>(
                getPos(),
                getParentForChildren(),
                isClean());
        pos_ = null;
      }
      return posBuilder_;
    }

    private com.google.protobuf.LazyStringArrayList comments_ =
        com.google.protobuf.LazyStringArrayList.emptyList();
    private void ensureCommentsIsMutable() {
      if (!comments_.isModifiable()) {
        comments_ = new com.google.protobuf.LazyStringArrayList(comments_);
      }
      bitField0_ |= 0x00000004;
    }
    /**
     * repeated string comments = 2;
     * @return A list containing the comments.
     */
    public com.google.protobuf.ProtocolStringList
        getCommentsList() {
      comments_.makeImmutable();
      return comments_;
    }
    /**
     * repeated string comments = 2;
     * @return The count of comments.
     */
    public int getCommentsCount() {
      return comments_.size();
    }
    /**
     * repeated string comments = 2;
     * @param index The index of the element to return.
     * @return The comments at the given index.
     */
    public java.lang.String getComments(int index) {
      return comments_.get(index);
    }
    /**
     * repeated string comments = 2;
     * @param index The index of the value to return.
     * @return The bytes of the comments at the given index.
     */
    public com.google.protobuf.ByteString
        getCommentsBytes(int index) {
      return comments_.getByteString(index);
    }
    /**
     * repeated string comments = 2;
     * @param index The index to set the value at.
     * @param value The comments to set.
     * @return This builder for chaining.
     */
    public Builder setComments(
        int index, java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      ensureCommentsIsMutable();
      comments_.set(index, value);
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * repeated string comments = 2;
     * @param value The comments to add.
     * @return This builder for chaining.
     */
    public Builder addComments(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      ensureCommentsIsMutable();
      comments_.add(value);
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * repeated string comments = 2;
     * @param values The comments to add.
     * @return This builder for chaining.
     */
    public Builder addAllComments(
        java.lang.Iterable values) {
      ensureCommentsIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(
          values, comments_);
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * repeated string comments = 2;
     * @return This builder for chaining.
     */
    public Builder clearComments() {
      comments_ =
        com.google.protobuf.LazyStringArrayList.emptyList();
      bitField0_ = (bitField0_ & ~0x00000004);;
      onChanged();
      return this;
    }
    /**
     * repeated string comments = 2;
     * @param value The bytes of the comments to add.
     * @return This builder for chaining.
     */
    public Builder addCommentsBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      ensureCommentsIsMutable();
      comments_.add(value);
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }

    private boolean builtin_ ;
    /**
     * bool builtin = 3;
     * @return The builtin.
     */
    @java.lang.Override
    public boolean getBuiltin() {
      return builtin_;
    }
    /**
     * bool builtin = 3;
     * @param value The builtin to set.
     * @return This builder for chaining.
     */
    public Builder setBuiltin(boolean value) {

      builtin_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     * bool builtin = 3;
     * @return This builder for chaining.
     */
    public Builder clearBuiltin() {
      bitField0_ = (bitField0_ & ~0x00000008);
      builtin_ = false;
      onChanged();
      return this;
    }

    private java.lang.Object name_ = "";
    /**
     * string name = 4;
     * @return The name.
     */
    public java.lang.String getName() {
      java.lang.Object ref = name_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        name_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string name = 4;
     * @return The bytes for name.
     */
    public com.google.protobuf.ByteString
        getNameBytes() {
      java.lang.Object ref = name_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        name_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string name = 4;
     * @param value The name to set.
     * @return This builder for chaining.
     */
    public Builder setName(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      name_ = value;
      bitField0_ |= 0x00000010;
      onChanged();
      return this;
    }
    /**
     * string name = 4;
     * @return This builder for chaining.
     */
    public Builder clearName() {
      name_ = getDefaultInstance().getName();
      bitField0_ = (bitField0_ & ~0x00000010);
      onChanged();
      return this;
    }
    /**
     * string name = 4;
     * @param value The bytes for name to set.
     * @return This builder for chaining.
     */
    public Builder setNameBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      name_ = value;
      bitField0_ |= 0x00000010;
      onChanged();
      return this;
    }

    private java.util.List decls_ =
      java.util.Collections.emptyList();
    private void ensureDeclsIsMutable() {
      if (!((bitField0_ & 0x00000020) != 0)) {
        decls_ = new java.util.ArrayList(decls_);
        bitField0_ |= 0x00000020;
       }
    }

    private com.google.protobuf.RepeatedFieldBuilderV3<
        xyz.block.ftl.v1.schema.Decl, xyz.block.ftl.v1.schema.Decl.Builder, xyz.block.ftl.v1.schema.DeclOrBuilder> declsBuilder_;

    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public java.util.List getDeclsList() {
      if (declsBuilder_ == null) {
        return java.util.Collections.unmodifiableList(decls_);
      } else {
        return declsBuilder_.getMessageList();
      }
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public int getDeclsCount() {
      if (declsBuilder_ == null) {
        return decls_.size();
      } else {
        return declsBuilder_.getCount();
      }
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public xyz.block.ftl.v1.schema.Decl getDecls(int index) {
      if (declsBuilder_ == null) {
        return decls_.get(index);
      } else {
        return declsBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder setDecls(
        int index, xyz.block.ftl.v1.schema.Decl value) {
      if (declsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureDeclsIsMutable();
        decls_.set(index, value);
        onChanged();
      } else {
        declsBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder setDecls(
        int index, xyz.block.ftl.v1.schema.Decl.Builder builderForValue) {
      if (declsBuilder_ == null) {
        ensureDeclsIsMutable();
        decls_.set(index, builderForValue.build());
        onChanged();
      } else {
        declsBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder addDecls(xyz.block.ftl.v1.schema.Decl value) {
      if (declsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureDeclsIsMutable();
        decls_.add(value);
        onChanged();
      } else {
        declsBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder addDecls(
        int index, xyz.block.ftl.v1.schema.Decl value) {
      if (declsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureDeclsIsMutable();
        decls_.add(index, value);
        onChanged();
      } else {
        declsBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder addDecls(
        xyz.block.ftl.v1.schema.Decl.Builder builderForValue) {
      if (declsBuilder_ == null) {
        ensureDeclsIsMutable();
        decls_.add(builderForValue.build());
        onChanged();
      } else {
        declsBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder addDecls(
        int index, xyz.block.ftl.v1.schema.Decl.Builder builderForValue) {
      if (declsBuilder_ == null) {
        ensureDeclsIsMutable();
        decls_.add(index, builderForValue.build());
        onChanged();
      } else {
        declsBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder addAllDecls(
        java.lang.Iterable values) {
      if (declsBuilder_ == null) {
        ensureDeclsIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, decls_);
        onChanged();
      } else {
        declsBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder clearDecls() {
      if (declsBuilder_ == null) {
        decls_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000020);
        onChanged();
      } else {
        declsBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public Builder removeDecls(int index) {
      if (declsBuilder_ == null) {
        ensureDeclsIsMutable();
        decls_.remove(index);
        onChanged();
      } else {
        declsBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public xyz.block.ftl.v1.schema.Decl.Builder getDeclsBuilder(
        int index) {
      return getDeclsFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public xyz.block.ftl.v1.schema.DeclOrBuilder getDeclsOrBuilder(
        int index) {
      if (declsBuilder_ == null) {
        return decls_.get(index);  } else {
        return declsBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public java.util.List 
         getDeclsOrBuilderList() {
      if (declsBuilder_ != null) {
        return declsBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(decls_);
      }
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public xyz.block.ftl.v1.schema.Decl.Builder addDeclsBuilder() {
      return getDeclsFieldBuilder().addBuilder(
          xyz.block.ftl.v1.schema.Decl.getDefaultInstance());
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public xyz.block.ftl.v1.schema.Decl.Builder addDeclsBuilder(
        int index) {
      return getDeclsFieldBuilder().addBuilder(
          index, xyz.block.ftl.v1.schema.Decl.getDefaultInstance());
    }
    /**
     * repeated .xyz.block.ftl.v1.schema.Decl decls = 5;
     */
    public java.util.List 
         getDeclsBuilderList() {
      return getDeclsFieldBuilder().getBuilderList();
    }
    private com.google.protobuf.RepeatedFieldBuilderV3<
        xyz.block.ftl.v1.schema.Decl, xyz.block.ftl.v1.schema.Decl.Builder, xyz.block.ftl.v1.schema.DeclOrBuilder> 
        getDeclsFieldBuilder() {
      if (declsBuilder_ == null) {
        declsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
            xyz.block.ftl.v1.schema.Decl, xyz.block.ftl.v1.schema.Decl.Builder, xyz.block.ftl.v1.schema.DeclOrBuilder>(
                decls_,
                ((bitField0_ & 0x00000020) != 0),
                getParentForChildren(),
                isClean());
        decls_ = null;
      }
      return declsBuilder_;
    }
    @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:xyz.block.ftl.v1.schema.Module)
  }

  // @@protoc_insertion_point(class_scope:xyz.block.ftl.v1.schema.Module)
  private static final xyz.block.ftl.v1.schema.Module DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new xyz.block.ftl.v1.schema.Module();
  }

  public static xyz.block.ftl.v1.schema.Module getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public Module parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      Builder builder = newBuilder();
      try {
        builder.mergeFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(builder.buildPartial());
      } catch (com.google.protobuf.UninitializedMessageException e) {
        throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(e)
            .setUnfinishedMessage(builder.buildPartial());
      }
      return builder.buildPartial();
    }
  };

  public static com.google.protobuf.Parser parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.protobuf.Parser getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public xyz.block.ftl.v1.schema.Module getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy