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

org.glowroot.central.repo.proto.Stored Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: StoredErrorInterval.proto

package org.glowroot.central.repo.proto;

public final class Stored {
  private Stored() {}
  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistryLite registry) {
  }

  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistry registry) {
    registerAllExtensions(
        (com.google.protobuf.ExtensionRegistryLite) registry);
  }
  public interface ErrorIntervalOrBuilder extends
      // @@protoc_insertion_point(interface_extends:org_glowroot_central_repo_proto.ErrorInterval)
      com.google.protobuf.MessageOrBuilder {

    /**
     * int64 from = 1;
     * @return The from.
     */
    long getFrom();

    /**
     * int64 to = 2;
     * @return The to.
     */
    long getTo();

    /**
     * int32 count = 3;
     * @return The count.
     */
    int getCount();

    /**
     * string message = 4;
     * @return The message.
     */
    java.lang.String getMessage();
    /**
     * string message = 4;
     * @return The bytes for message.
     */
    com.google.protobuf.ByteString
        getMessageBytes();

    /**
     * 
     * used during rollup and rendering chart markings
     * 
* * bool do_not_merge_to_the_left = 5; * @return The doNotMergeToTheLeft. */ boolean getDoNotMergeToTheLeft(); /** *
     * used during rollup and rendering chart markings
     * 
* * bool do_not_merge_to_the_right = 6; * @return The doNotMergeToTheRight. */ boolean getDoNotMergeToTheRight(); } /** * Protobuf type {@code org_glowroot_central_repo_proto.ErrorInterval} */ public static final class ErrorInterval extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:org_glowroot_central_repo_proto.ErrorInterval) ErrorIntervalOrBuilder { private static final long serialVersionUID = 0L; // Use ErrorInterval.newBuilder() to construct. private ErrorInterval(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ErrorInterval() { message_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ErrorInterval(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private ErrorInterval( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 8: { from_ = input.readInt64(); break; } case 16: { to_ = input.readInt64(); break; } case 24: { count_ = input.readInt32(); break; } case 34: { java.lang.String s = input.readStringRequireUtf8(); message_ = s; break; } case 40: { doNotMergeToTheLeft_ = input.readBool(); break; } case 48: { doNotMergeToTheRight_ = input.readBool(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.glowroot.central.repo.proto.Stored.internal_static_org_glowroot_central_repo_proto_ErrorInterval_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.glowroot.central.repo.proto.Stored.internal_static_org_glowroot_central_repo_proto_ErrorInterval_fieldAccessorTable .ensureFieldAccessorsInitialized( org.glowroot.central.repo.proto.Stored.ErrorInterval.class, org.glowroot.central.repo.proto.Stored.ErrorInterval.Builder.class); } public static final int FROM_FIELD_NUMBER = 1; private long from_; /** * int64 from = 1; * @return The from. */ @java.lang.Override public long getFrom() { return from_; } public static final int TO_FIELD_NUMBER = 2; private long to_; /** * int64 to = 2; * @return The to. */ @java.lang.Override public long getTo() { return to_; } public static final int COUNT_FIELD_NUMBER = 3; private int count_; /** * int32 count = 3; * @return The count. */ @java.lang.Override public int getCount() { return count_; } public static final int MESSAGE_FIELD_NUMBER = 4; private volatile java.lang.Object message_; /** * string message = 4; * @return The message. */ @java.lang.Override public java.lang.String getMessage() { java.lang.Object ref = message_; 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(); message_ = s; return s; } } /** * string message = 4; * @return The bytes for message. */ @java.lang.Override public com.google.protobuf.ByteString getMessageBytes() { java.lang.Object ref = message_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); message_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DO_NOT_MERGE_TO_THE_LEFT_FIELD_NUMBER = 5; private boolean doNotMergeToTheLeft_; /** *
     * used during rollup and rendering chart markings
     * 
* * bool do_not_merge_to_the_left = 5; * @return The doNotMergeToTheLeft. */ @java.lang.Override public boolean getDoNotMergeToTheLeft() { return doNotMergeToTheLeft_; } public static final int DO_NOT_MERGE_TO_THE_RIGHT_FIELD_NUMBER = 6; private boolean doNotMergeToTheRight_; /** *
     * used during rollup and rendering chart markings
     * 
* * bool do_not_merge_to_the_right = 6; * @return The doNotMergeToTheRight. */ @java.lang.Override public boolean getDoNotMergeToTheRight() { return doNotMergeToTheRight_; } 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 (from_ != 0L) { output.writeInt64(1, from_); } if (to_ != 0L) { output.writeInt64(2, to_); } if (count_ != 0) { output.writeInt32(3, count_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(message_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, message_); } if (doNotMergeToTheLeft_ != false) { output.writeBool(5, doNotMergeToTheLeft_); } if (doNotMergeToTheRight_ != false) { output.writeBool(6, doNotMergeToTheRight_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (from_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(1, from_); } if (to_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(2, to_); } if (count_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(3, count_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(message_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, message_); } if (doNotMergeToTheLeft_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(5, doNotMergeToTheLeft_); } if (doNotMergeToTheRight_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(6, doNotMergeToTheRight_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof org.glowroot.central.repo.proto.Stored.ErrorInterval)) { return super.equals(obj); } org.glowroot.central.repo.proto.Stored.ErrorInterval other = (org.glowroot.central.repo.proto.Stored.ErrorInterval) obj; if (getFrom() != other.getFrom()) return false; if (getTo() != other.getTo()) return false; if (getCount() != other.getCount()) return false; if (!getMessage() .equals(other.getMessage())) return false; if (getDoNotMergeToTheLeft() != other.getDoNotMergeToTheLeft()) return false; if (getDoNotMergeToTheRight() != other.getDoNotMergeToTheRight()) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + FROM_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getFrom()); hash = (37 * hash) + TO_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getTo()); hash = (37 * hash) + COUNT_FIELD_NUMBER; hash = (53 * hash) + getCount(); hash = (37 * hash) + MESSAGE_FIELD_NUMBER; hash = (53 * hash) + getMessage().hashCode(); hash = (37 * hash) + DO_NOT_MERGE_TO_THE_LEFT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDoNotMergeToTheLeft()); hash = (37 * hash) + DO_NOT_MERGE_TO_THE_RIGHT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDoNotMergeToTheRight()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval 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 org.glowroot.central.repo.proto.Stored.ErrorInterval parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval 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 org.glowroot.central.repo.proto.Stored.ErrorInterval parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval 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(org.glowroot.central.repo.proto.Stored.ErrorInterval 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 org_glowroot_central_repo_proto.ErrorInterval} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:org_glowroot_central_repo_proto.ErrorInterval) org.glowroot.central.repo.proto.Stored.ErrorIntervalOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.glowroot.central.repo.proto.Stored.internal_static_org_glowroot_central_repo_proto_ErrorInterval_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.glowroot.central.repo.proto.Stored.internal_static_org_glowroot_central_repo_proto_ErrorInterval_fieldAccessorTable .ensureFieldAccessorsInitialized( org.glowroot.central.repo.proto.Stored.ErrorInterval.class, org.glowroot.central.repo.proto.Stored.ErrorInterval.Builder.class); } // Construct using org.glowroot.central.repo.proto.Stored.ErrorInterval.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); from_ = 0L; to_ = 0L; count_ = 0; message_ = ""; doNotMergeToTheLeft_ = false; doNotMergeToTheRight_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.glowroot.central.repo.proto.Stored.internal_static_org_glowroot_central_repo_proto_ErrorInterval_descriptor; } @java.lang.Override public org.glowroot.central.repo.proto.Stored.ErrorInterval getDefaultInstanceForType() { return org.glowroot.central.repo.proto.Stored.ErrorInterval.getDefaultInstance(); } @java.lang.Override public org.glowroot.central.repo.proto.Stored.ErrorInterval build() { org.glowroot.central.repo.proto.Stored.ErrorInterval result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.glowroot.central.repo.proto.Stored.ErrorInterval buildPartial() { org.glowroot.central.repo.proto.Stored.ErrorInterval result = new org.glowroot.central.repo.proto.Stored.ErrorInterval(this); result.from_ = from_; result.to_ = to_; result.count_ = count_; result.message_ = message_; result.doNotMergeToTheLeft_ = doNotMergeToTheLeft_; result.doNotMergeToTheRight_ = doNotMergeToTheRight_; 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 org.glowroot.central.repo.proto.Stored.ErrorInterval) { return mergeFrom((org.glowroot.central.repo.proto.Stored.ErrorInterval)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.glowroot.central.repo.proto.Stored.ErrorInterval other) { if (other == org.glowroot.central.repo.proto.Stored.ErrorInterval.getDefaultInstance()) return this; if (other.getFrom() != 0L) { setFrom(other.getFrom()); } if (other.getTo() != 0L) { setTo(other.getTo()); } if (other.getCount() != 0) { setCount(other.getCount()); } if (!other.getMessage().isEmpty()) { message_ = other.message_; onChanged(); } if (other.getDoNotMergeToTheLeft() != false) { setDoNotMergeToTheLeft(other.getDoNotMergeToTheLeft()); } if (other.getDoNotMergeToTheRight() != false) { setDoNotMergeToTheRight(other.getDoNotMergeToTheRight()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.glowroot.central.repo.proto.Stored.ErrorInterval parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.glowroot.central.repo.proto.Stored.ErrorInterval) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private long from_ ; /** * int64 from = 1; * @return The from. */ @java.lang.Override public long getFrom() { return from_; } /** * int64 from = 1; * @param value The from to set. * @return This builder for chaining. */ public Builder setFrom(long value) { from_ = value; onChanged(); return this; } /** * int64 from = 1; * @return This builder for chaining. */ public Builder clearFrom() { from_ = 0L; onChanged(); return this; } private long to_ ; /** * int64 to = 2; * @return The to. */ @java.lang.Override public long getTo() { return to_; } /** * int64 to = 2; * @param value The to to set. * @return This builder for chaining. */ public Builder setTo(long value) { to_ = value; onChanged(); return this; } /** * int64 to = 2; * @return This builder for chaining. */ public Builder clearTo() { to_ = 0L; onChanged(); return this; } private int count_ ; /** * int32 count = 3; * @return The count. */ @java.lang.Override public int getCount() { return count_; } /** * int32 count = 3; * @param value The count to set. * @return This builder for chaining. */ public Builder setCount(int value) { count_ = value; onChanged(); return this; } /** * int32 count = 3; * @return This builder for chaining. */ public Builder clearCount() { count_ = 0; onChanged(); return this; } private java.lang.Object message_ = ""; /** * string message = 4; * @return The message. */ public java.lang.String getMessage() { java.lang.Object ref = message_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); message_ = s; return s; } else { return (java.lang.String) ref; } } /** * string message = 4; * @return The bytes for message. */ public com.google.protobuf.ByteString getMessageBytes() { java.lang.Object ref = message_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); message_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string message = 4; * @param value The message to set. * @return This builder for chaining. */ public Builder setMessage( java.lang.String value) { if (value == null) { throw new NullPointerException(); } message_ = value; onChanged(); return this; } /** * string message = 4; * @return This builder for chaining. */ public Builder clearMessage() { message_ = getDefaultInstance().getMessage(); onChanged(); return this; } /** * string message = 4; * @param value The bytes for message to set. * @return This builder for chaining. */ public Builder setMessageBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); message_ = value; onChanged(); return this; } private boolean doNotMergeToTheLeft_ ; /** *
       * used during rollup and rendering chart markings
       * 
* * bool do_not_merge_to_the_left = 5; * @return The doNotMergeToTheLeft. */ @java.lang.Override public boolean getDoNotMergeToTheLeft() { return doNotMergeToTheLeft_; } /** *
       * used during rollup and rendering chart markings
       * 
* * bool do_not_merge_to_the_left = 5; * @param value The doNotMergeToTheLeft to set. * @return This builder for chaining. */ public Builder setDoNotMergeToTheLeft(boolean value) { doNotMergeToTheLeft_ = value; onChanged(); return this; } /** *
       * used during rollup and rendering chart markings
       * 
* * bool do_not_merge_to_the_left = 5; * @return This builder for chaining. */ public Builder clearDoNotMergeToTheLeft() { doNotMergeToTheLeft_ = false; onChanged(); return this; } private boolean doNotMergeToTheRight_ ; /** *
       * used during rollup and rendering chart markings
       * 
* * bool do_not_merge_to_the_right = 6; * @return The doNotMergeToTheRight. */ @java.lang.Override public boolean getDoNotMergeToTheRight() { return doNotMergeToTheRight_; } /** *
       * used during rollup and rendering chart markings
       * 
* * bool do_not_merge_to_the_right = 6; * @param value The doNotMergeToTheRight to set. * @return This builder for chaining. */ public Builder setDoNotMergeToTheRight(boolean value) { doNotMergeToTheRight_ = value; onChanged(); return this; } /** *
       * used during rollup and rendering chart markings
       * 
* * bool do_not_merge_to_the_right = 6; * @return This builder for chaining. */ public Builder clearDoNotMergeToTheRight() { doNotMergeToTheRight_ = false; 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:org_glowroot_central_repo_proto.ErrorInterval) } // @@protoc_insertion_point(class_scope:org_glowroot_central_repo_proto.ErrorInterval) private static final org.glowroot.central.repo.proto.Stored.ErrorInterval DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.glowroot.central.repo.proto.Stored.ErrorInterval(); } public static org.glowroot.central.repo.proto.Stored.ErrorInterval getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ErrorInterval parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new ErrorInterval(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public org.glowroot.central.repo.proto.Stored.ErrorInterval getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } private static final com.google.protobuf.Descriptors.Descriptor internal_static_org_glowroot_central_repo_proto_ErrorInterval_descriptor; private static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_org_glowroot_central_repo_proto_ErrorInterval_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { return descriptor; } private static com.google.protobuf.Descriptors.FileDescriptor descriptor; static { java.lang.String[] descriptorData = { "\n\031StoredErrorInterval.proto\022\037org_glowroo" + "t_central_repo_proto\"\216\001\n\rErrorInterval\022\014" + "\n\004from\030\001 \001(\003\022\n\n\002to\030\002 \001(\003\022\r\n\005count\030\003 \001(\005\022" + "\017\n\007message\030\004 \001(\t\022 \n\030do_not_merge_to_the_" + "left\030\005 \001(\010\022!\n\031do_not_merge_to_the_right\030" + "\006 \001(\010B)\n\037org.glowroot.central.repo.proto" + "B\006Storedb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { }); internal_static_org_glowroot_central_repo_proto_ErrorInterval_descriptor = getDescriptor().getMessageTypes().get(0); internal_static_org_glowroot_central_repo_proto_ErrorInterval_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_org_glowroot_central_repo_proto_ErrorInterval_descriptor, new java.lang.String[] { "From", "To", "Count", "Message", "DoNotMergeToTheLeft", "DoNotMergeToTheRight", }); } // @@protoc_insertion_point(outer_class_scope) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy