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

io.helidon.config.etcd.internal.client.proto.AlarmRequest Maven / Gradle / Ivy

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

package io.helidon.config.etcd.internal.client.proto;

/**
 * Protobuf type {@code etcdserverpb.AlarmRequest}
 */
public final class AlarmRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:etcdserverpb.AlarmRequest)
    AlarmRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use AlarmRequest.newBuilder() to construct.
  private AlarmRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private AlarmRequest() {
    action_ = 0;
    alarm_ = 0;
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_AlarmRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_AlarmRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            io.helidon.config.etcd.internal.client.proto.AlarmRequest.class, io.helidon.config.etcd.internal.client.proto.AlarmRequest.Builder.class);
  }

  /**
   * Protobuf enum {@code etcdserverpb.AlarmRequest.AlarmAction}
   */
  public enum AlarmAction
      implements com.google.protobuf.ProtocolMessageEnum {
    /**
     * GET = 0;
     */
    GET(0),
    /**
     * ACTIVATE = 1;
     */
    ACTIVATE(1),
    /**
     * DEACTIVATE = 2;
     */
    DEACTIVATE(2),
    UNRECOGNIZED(-1),
    ;

    /**
     * GET = 0;
     */
    public static final int GET_VALUE = 0;
    /**
     * ACTIVATE = 1;
     */
    public static final int ACTIVATE_VALUE = 1;
    /**
     * DEACTIVATE = 2;
     */
    public static final int DEACTIVATE_VALUE = 2;


    public final int getNumber() {
      if (this == UNRECOGNIZED) {
        throw new java.lang.IllegalArgumentException(
            "Can't get the number of an unknown enum value.");
      }
      return value;
    }

    /**
     * @param value The numeric wire value of the corresponding enum entry.
     * @return The enum associated with the given numeric wire value.
     * @deprecated Use {@link #forNumber(int)} instead.
     */
    @java.lang.Deprecated
    public static AlarmAction valueOf(int value) {
      return forNumber(value);
    }

    /**
     * @param value The numeric wire value of the corresponding enum entry.
     * @return The enum associated with the given numeric wire value.
     */
    public static AlarmAction forNumber(int value) {
      switch (value) {
        case 0: return GET;
        case 1: return ACTIVATE;
        case 2: return DEACTIVATE;
        default: return null;
      }
    }

    public static com.google.protobuf.Internal.EnumLiteMap
        internalGetValueMap() {
      return internalValueMap;
    }
    private static final com.google.protobuf.Internal.EnumLiteMap<
        AlarmAction> internalValueMap =
          new com.google.protobuf.Internal.EnumLiteMap() {
            public AlarmAction findValueByNumber(int number) {
              return AlarmAction.forNumber(number);
            }
          };

    public final com.google.protobuf.Descriptors.EnumValueDescriptor
        getValueDescriptor() {
      if (this == UNRECOGNIZED) {
        throw new java.lang.IllegalStateException(
            "Can't get the descriptor of an unrecognized enum value.");
      }
      return getDescriptor().getValues().get(ordinal());
    }
    public final com.google.protobuf.Descriptors.EnumDescriptor
        getDescriptorForType() {
      return getDescriptor();
    }
    public static final com.google.protobuf.Descriptors.EnumDescriptor
        getDescriptor() {
      return io.helidon.config.etcd.internal.client.proto.AlarmRequest.getDescriptor().getEnumTypes().get(0);
    }

    private static final AlarmAction[] VALUES = values();

    public static AlarmAction valueOf(
        com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
      if (desc.getType() != getDescriptor()) {
        throw new java.lang.IllegalArgumentException(
          "EnumValueDescriptor is not for this type.");
      }
      if (desc.getIndex() == -1) {
        return UNRECOGNIZED;
      }
      return VALUES[desc.getIndex()];
    }

    private final int value;

    private AlarmAction(int value) {
      this.value = value;
    }

    // @@protoc_insertion_point(enum_scope:etcdserverpb.AlarmRequest.AlarmAction)
  }

  public static final int ACTION_FIELD_NUMBER = 1;
  private int action_;
  /**
   * 
   * action is the kind of alarm request to issue. The action
   * may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
   * raised alarm.
   * 
* * .etcdserverpb.AlarmRequest.AlarmAction action = 1; * @return The enum numeric value on the wire for action. */ @java.lang.Override public int getActionValue() { return action_; } /** *
   * action is the kind of alarm request to issue. The action
   * may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
   * raised alarm.
   * 
* * .etcdserverpb.AlarmRequest.AlarmAction action = 1; * @return The action. */ @java.lang.Override public io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction getAction() { @SuppressWarnings("deprecation") io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction result = io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction.valueOf(action_); return result == null ? io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction.UNRECOGNIZED : result; } public static final int MEMBERID_FIELD_NUMBER = 2; private long memberID_; /** *
   * memberID is the ID of the member associated with the alarm. If memberID is 0, the
   * alarm request covers all members.
   * 
* * uint64 memberID = 2; * @return The memberID. */ @java.lang.Override public long getMemberID() { return memberID_; } public static final int ALARM_FIELD_NUMBER = 3; private int alarm_; /** *
   * alarm is the type of alarm to consider for this request.
   * 
* * .etcdserverpb.AlarmType alarm = 3; * @return The enum numeric value on the wire for alarm. */ @java.lang.Override public int getAlarmValue() { return alarm_; } /** *
   * alarm is the type of alarm to consider for this request.
   * 
* * .etcdserverpb.AlarmType alarm = 3; * @return The alarm. */ @java.lang.Override public io.helidon.config.etcd.internal.client.proto.AlarmType getAlarm() { @SuppressWarnings("deprecation") io.helidon.config.etcd.internal.client.proto.AlarmType result = io.helidon.config.etcd.internal.client.proto.AlarmType.valueOf(alarm_); return result == null ? io.helidon.config.etcd.internal.client.proto.AlarmType.UNRECOGNIZED : result; } 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 (action_ != io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction.GET.getNumber()) { output.writeEnum(1, action_); } if (memberID_ != 0L) { output.writeUInt64(2, memberID_); } if (alarm_ != io.helidon.config.etcd.internal.client.proto.AlarmType.NONE.getNumber()) { output.writeEnum(3, alarm_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (action_ != io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction.GET.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(1, action_); } if (memberID_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(2, memberID_); } if (alarm_ != io.helidon.config.etcd.internal.client.proto.AlarmType.NONE.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(3, alarm_); } 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 io.helidon.config.etcd.internal.client.proto.AlarmRequest)) { return super.equals(obj); } io.helidon.config.etcd.internal.client.proto.AlarmRequest other = (io.helidon.config.etcd.internal.client.proto.AlarmRequest) obj; if (action_ != other.action_) return false; if (getMemberID() != other.getMemberID()) return false; if (alarm_ != other.alarm_) 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) + ACTION_FIELD_NUMBER; hash = (53 * hash) + action_; hash = (37 * hash) + MEMBERID_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getMemberID()); hash = (37 * hash) + ALARM_FIELD_NUMBER; hash = (53 * hash) + alarm_; hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest 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 io.helidon.config.etcd.internal.client.proto.AlarmRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest 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 io.helidon.config.etcd.internal.client.proto.AlarmRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest 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(io.helidon.config.etcd.internal.client.proto.AlarmRequest 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 etcdserverpb.AlarmRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:etcdserverpb.AlarmRequest) io.helidon.config.etcd.internal.client.proto.AlarmRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_AlarmRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_AlarmRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( io.helidon.config.etcd.internal.client.proto.AlarmRequest.class, io.helidon.config.etcd.internal.client.proto.AlarmRequest.Builder.class); } // Construct using io.helidon.config.etcd.internal.client.proto.AlarmRequest.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); action_ = 0; memberID_ = 0L; alarm_ = 0; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_AlarmRequest_descriptor; } @java.lang.Override public io.helidon.config.etcd.internal.client.proto.AlarmRequest getDefaultInstanceForType() { return io.helidon.config.etcd.internal.client.proto.AlarmRequest.getDefaultInstance(); } @java.lang.Override public io.helidon.config.etcd.internal.client.proto.AlarmRequest build() { io.helidon.config.etcd.internal.client.proto.AlarmRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.helidon.config.etcd.internal.client.proto.AlarmRequest buildPartial() { io.helidon.config.etcd.internal.client.proto.AlarmRequest result = new io.helidon.config.etcd.internal.client.proto.AlarmRequest(this); result.action_ = action_; result.memberID_ = memberID_; result.alarm_ = alarm_; 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 io.helidon.config.etcd.internal.client.proto.AlarmRequest) { return mergeFrom((io.helidon.config.etcd.internal.client.proto.AlarmRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.helidon.config.etcd.internal.client.proto.AlarmRequest other) { if (other == io.helidon.config.etcd.internal.client.proto.AlarmRequest.getDefaultInstance()) return this; if (other.action_ != 0) { setActionValue(other.getActionValue()); } if (other.getMemberID() != 0L) { setMemberID(other.getMemberID()); } if (other.alarm_ != 0) { setAlarmValue(other.getAlarmValue()); } 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: { action_ = input.readEnum(); break; } // case 8 case 16: { memberID_ = input.readUInt64(); break; } // case 16 case 24: { alarm_ = input.readEnum(); break; } // case 24 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 action_ = 0; /** *
     * action is the kind of alarm request to issue. The action
     * may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
     * raised alarm.
     * 
* * .etcdserverpb.AlarmRequest.AlarmAction action = 1; * @return The enum numeric value on the wire for action. */ @java.lang.Override public int getActionValue() { return action_; } /** *
     * action is the kind of alarm request to issue. The action
     * may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
     * raised alarm.
     * 
* * .etcdserverpb.AlarmRequest.AlarmAction action = 1; * @param value The enum numeric value on the wire for action to set. * @return This builder for chaining. */ public Builder setActionValue(int value) { action_ = value; onChanged(); return this; } /** *
     * action is the kind of alarm request to issue. The action
     * may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
     * raised alarm.
     * 
* * .etcdserverpb.AlarmRequest.AlarmAction action = 1; * @return The action. */ @java.lang.Override public io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction getAction() { @SuppressWarnings("deprecation") io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction result = io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction.valueOf(action_); return result == null ? io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction.UNRECOGNIZED : result; } /** *
     * action is the kind of alarm request to issue. The action
     * may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
     * raised alarm.
     * 
* * .etcdserverpb.AlarmRequest.AlarmAction action = 1; * @param value The action to set. * @return This builder for chaining. */ public Builder setAction(io.helidon.config.etcd.internal.client.proto.AlarmRequest.AlarmAction value) { if (value == null) { throw new NullPointerException(); } action_ = value.getNumber(); onChanged(); return this; } /** *
     * action is the kind of alarm request to issue. The action
     * may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
     * raised alarm.
     * 
* * .etcdserverpb.AlarmRequest.AlarmAction action = 1; * @return This builder for chaining. */ public Builder clearAction() { action_ = 0; onChanged(); return this; } private long memberID_ ; /** *
     * memberID is the ID of the member associated with the alarm. If memberID is 0, the
     * alarm request covers all members.
     * 
* * uint64 memberID = 2; * @return The memberID. */ @java.lang.Override public long getMemberID() { return memberID_; } /** *
     * memberID is the ID of the member associated with the alarm. If memberID is 0, the
     * alarm request covers all members.
     * 
* * uint64 memberID = 2; * @param value The memberID to set. * @return This builder for chaining. */ public Builder setMemberID(long value) { memberID_ = value; onChanged(); return this; } /** *
     * memberID is the ID of the member associated with the alarm. If memberID is 0, the
     * alarm request covers all members.
     * 
* * uint64 memberID = 2; * @return This builder for chaining. */ public Builder clearMemberID() { memberID_ = 0L; onChanged(); return this; } private int alarm_ = 0; /** *
     * alarm is the type of alarm to consider for this request.
     * 
* * .etcdserverpb.AlarmType alarm = 3; * @return The enum numeric value on the wire for alarm. */ @java.lang.Override public int getAlarmValue() { return alarm_; } /** *
     * alarm is the type of alarm to consider for this request.
     * 
* * .etcdserverpb.AlarmType alarm = 3; * @param value The enum numeric value on the wire for alarm to set. * @return This builder for chaining. */ public Builder setAlarmValue(int value) { alarm_ = value; onChanged(); return this; } /** *
     * alarm is the type of alarm to consider for this request.
     * 
* * .etcdserverpb.AlarmType alarm = 3; * @return The alarm. */ @java.lang.Override public io.helidon.config.etcd.internal.client.proto.AlarmType getAlarm() { @SuppressWarnings("deprecation") io.helidon.config.etcd.internal.client.proto.AlarmType result = io.helidon.config.etcd.internal.client.proto.AlarmType.valueOf(alarm_); return result == null ? io.helidon.config.etcd.internal.client.proto.AlarmType.UNRECOGNIZED : result; } /** *
     * alarm is the type of alarm to consider for this request.
     * 
* * .etcdserverpb.AlarmType alarm = 3; * @param value The alarm to set. * @return This builder for chaining. */ public Builder setAlarm(io.helidon.config.etcd.internal.client.proto.AlarmType value) { if (value == null) { throw new NullPointerException(); } alarm_ = value.getNumber(); onChanged(); return this; } /** *
     * alarm is the type of alarm to consider for this request.
     * 
* * .etcdserverpb.AlarmType alarm = 3; * @return This builder for chaining. */ public Builder clearAlarm() { alarm_ = 0; 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:etcdserverpb.AlarmRequest) } // @@protoc_insertion_point(class_scope:etcdserverpb.AlarmRequest) private static final io.helidon.config.etcd.internal.client.proto.AlarmRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.helidon.config.etcd.internal.client.proto.AlarmRequest(); } public static io.helidon.config.etcd.internal.client.proto.AlarmRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public AlarmRequest 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 io.helidon.config.etcd.internal.client.proto.AlarmRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy