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

com.alibaba.graphscope.proto.groot.DdlRequestPb Maven / Gradle / Ivy

There is a newer version: 0.28.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: groot/sdk/model.proto

package com.alibaba.graphscope.proto.groot;

/**
 * Protobuf type {@code gs.rpc.groot.DdlRequestPb}
 */
public final class DdlRequestPb extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:gs.rpc.groot.DdlRequestPb)
    DdlRequestPbOrBuilder {
private static final long serialVersionUID = 0L;
  // Use DdlRequestPb.newBuilder() to construct.
  private DdlRequestPb(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private DdlRequestPb() {
    opType_ = 0;
    ddlBytes_ = com.google.protobuf.ByteString.EMPTY;
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_DdlRequestPb_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_DdlRequestPb_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.alibaba.graphscope.proto.groot.DdlRequestPb.class, com.alibaba.graphscope.proto.groot.DdlRequestPb.Builder.class);
  }

  public static final int OPTYPE_FIELD_NUMBER = 1;
  private int opType_ = 0;
  /**
   * .gs.rpc.groot.OpTypePb opType = 1;
   * @return The enum numeric value on the wire for opType.
   */
  @java.lang.Override public int getOpTypeValue() {
    return opType_;
  }
  /**
   * .gs.rpc.groot.OpTypePb opType = 1;
   * @return The opType.
   */
  @java.lang.Override public com.alibaba.graphscope.proto.groot.OpTypePb getOpType() {
    com.alibaba.graphscope.proto.groot.OpTypePb result = com.alibaba.graphscope.proto.groot.OpTypePb.forNumber(opType_);
    return result == null ? com.alibaba.graphscope.proto.groot.OpTypePb.UNRECOGNIZED : result;
  }

  public static final int DDLBYTES_FIELD_NUMBER = 2;
  private com.google.protobuf.ByteString ddlBytes_ = com.google.protobuf.ByteString.EMPTY;
  /**
   * bytes ddlBytes = 2;
   * @return The ddlBytes.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getDdlBytes() {
    return ddlBytes_;
  }

  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 (opType_ != com.alibaba.graphscope.proto.groot.OpTypePb.MARKER.getNumber()) {
      output.writeEnum(1, opType_);
    }
    if (!ddlBytes_.isEmpty()) {
      output.writeBytes(2, ddlBytes_);
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (opType_ != com.alibaba.graphscope.proto.groot.OpTypePb.MARKER.getNumber()) {
      size += com.google.protobuf.CodedOutputStream
        .computeEnumSize(1, opType_);
    }
    if (!ddlBytes_.isEmpty()) {
      size += com.google.protobuf.CodedOutputStream
        .computeBytesSize(2, ddlBytes_);
    }
    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 com.alibaba.graphscope.proto.groot.DdlRequestPb)) {
      return super.equals(obj);
    }
    com.alibaba.graphscope.proto.groot.DdlRequestPb other = (com.alibaba.graphscope.proto.groot.DdlRequestPb) obj;

    if (opType_ != other.opType_) return false;
    if (!getDdlBytes()
        .equals(other.getDdlBytes())) 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();
    hash = (37 * hash) + OPTYPE_FIELD_NUMBER;
    hash = (53 * hash) + opType_;
    hash = (37 * hash) + DDLBYTES_FIELD_NUMBER;
    hash = (53 * hash) + getDdlBytes().hashCode();
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      java.io.InputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseDelimitedFrom(
      java.io.InputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static com.alibaba.graphscope.proto.groot.DdlRequestPb parseFrom(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input, extensionRegistry);
  }

  @java.lang.Override
  public Builder newBuilderForType() { return newBuilder(); }
  public static Builder newBuilder() {
    return DEFAULT_INSTANCE.toBuilder();
  }
  public static Builder newBuilder(com.alibaba.graphscope.proto.groot.DdlRequestPb 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 gs.rpc.groot.DdlRequestPb}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:gs.rpc.groot.DdlRequestPb)
      com.alibaba.graphscope.proto.groot.DdlRequestPbOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_DdlRequestPb_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_DdlRequestPb_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.alibaba.graphscope.proto.groot.DdlRequestPb.class, com.alibaba.graphscope.proto.groot.DdlRequestPb.Builder.class);
    }

    // Construct using com.alibaba.graphscope.proto.groot.DdlRequestPb.newBuilder()
    private Builder() {

    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      opType_ = 0;
      ddlBytes_ = com.google.protobuf.ByteString.EMPTY;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return com.alibaba.graphscope.proto.groot.Model.internal_static_gs_rpc_groot_DdlRequestPb_descriptor;
    }

    @java.lang.Override
    public com.alibaba.graphscope.proto.groot.DdlRequestPb getDefaultInstanceForType() {
      return com.alibaba.graphscope.proto.groot.DdlRequestPb.getDefaultInstance();
    }

    @java.lang.Override
    public com.alibaba.graphscope.proto.groot.DdlRequestPb build() {
      com.alibaba.graphscope.proto.groot.DdlRequestPb result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.alibaba.graphscope.proto.groot.DdlRequestPb buildPartial() {
      com.alibaba.graphscope.proto.groot.DdlRequestPb result = new com.alibaba.graphscope.proto.groot.DdlRequestPb(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(com.alibaba.graphscope.proto.groot.DdlRequestPb result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.opType_ = opType_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.ddlBytes_ = ddlBytes_;
      }
    }

    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof com.alibaba.graphscope.proto.groot.DdlRequestPb) {
        return mergeFrom((com.alibaba.graphscope.proto.groot.DdlRequestPb)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.alibaba.graphscope.proto.groot.DdlRequestPb other) {
      if (other == com.alibaba.graphscope.proto.groot.DdlRequestPb.getDefaultInstance()) return this;
      if (other.opType_ != 0) {
        setOpTypeValue(other.getOpTypeValue());
      }
      if (other.getDdlBytes() != com.google.protobuf.ByteString.EMPTY) {
        setDdlBytes(other.getDdlBytes());
      }
      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 8: {
              opType_ = input.readEnum();
              bitField0_ |= 0x00000001;
              break;
            } // case 8
            case 18: {
              ddlBytes_ = input.readBytes();
              bitField0_ |= 0x00000002;
              break;
            } // case 18
            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 int opType_ = 0;
    /**
     * .gs.rpc.groot.OpTypePb opType = 1;
     * @return The enum numeric value on the wire for opType.
     */
    @java.lang.Override public int getOpTypeValue() {
      return opType_;
    }
    /**
     * .gs.rpc.groot.OpTypePb opType = 1;
     * @param value The enum numeric value on the wire for opType to set.
     * @return This builder for chaining.
     */
    public Builder setOpTypeValue(int value) {
      opType_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.OpTypePb opType = 1;
     * @return The opType.
     */
    @java.lang.Override
    public com.alibaba.graphscope.proto.groot.OpTypePb getOpType() {
      com.alibaba.graphscope.proto.groot.OpTypePb result = com.alibaba.graphscope.proto.groot.OpTypePb.forNumber(opType_);
      return result == null ? com.alibaba.graphscope.proto.groot.OpTypePb.UNRECOGNIZED : result;
    }
    /**
     * .gs.rpc.groot.OpTypePb opType = 1;
     * @param value The opType to set.
     * @return This builder for chaining.
     */
    public Builder setOpType(com.alibaba.graphscope.proto.groot.OpTypePb value) {
      if (value == null) {
        throw new NullPointerException();
      }
      bitField0_ |= 0x00000001;
      opType_ = value.getNumber();
      onChanged();
      return this;
    }
    /**
     * .gs.rpc.groot.OpTypePb opType = 1;
     * @return This builder for chaining.
     */
    public Builder clearOpType() {
      bitField0_ = (bitField0_ & ~0x00000001);
      opType_ = 0;
      onChanged();
      return this;
    }

    private com.google.protobuf.ByteString ddlBytes_ = com.google.protobuf.ByteString.EMPTY;
    /**
     * bytes ddlBytes = 2;
     * @return The ddlBytes.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString getDdlBytes() {
      return ddlBytes_;
    }
    /**
     * bytes ddlBytes = 2;
     * @param value The ddlBytes to set.
     * @return This builder for chaining.
     */
    public Builder setDdlBytes(com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      ddlBytes_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * bytes ddlBytes = 2;
     * @return This builder for chaining.
     */
    public Builder clearDdlBytes() {
      bitField0_ = (bitField0_ & ~0x00000002);
      ddlBytes_ = getDefaultInstance().getDdlBytes();
      onChanged();
      return this;
    }
    @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:gs.rpc.groot.DdlRequestPb)
  }

  // @@protoc_insertion_point(class_scope:gs.rpc.groot.DdlRequestPb)
  private static final com.alibaba.graphscope.proto.groot.DdlRequestPb DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new com.alibaba.graphscope.proto.groot.DdlRequestPb();
  }

  public static com.alibaba.graphscope.proto.groot.DdlRequestPb getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public DdlRequestPb 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 com.alibaba.graphscope.proto.groot.DdlRequestPb getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy