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

com.google.api.expr.v1alpha1.SourcePosition Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: google/api/expr/v1alpha1/syntax.proto
// Protobuf Java Version: 4.28.1

package com.google.api.expr.v1alpha1;

/**
 * 
 * A specific position in source.
 * 
* * Protobuf type {@code google.api.expr.v1alpha1.SourcePosition} */ public final class SourcePosition extends com.google.protobuf.GeneratedMessage implements // @@protoc_insertion_point(message_implements:google.api.expr.v1alpha1.SourcePosition) SourcePositionOrBuilder { private static final long serialVersionUID = 0L; static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, /* minor= */ 28, /* patch= */ 1, /* suffix= */ "", SourcePosition.class.getName()); } // Use SourcePosition.newBuilder() to construct. private SourcePosition(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } private SourcePosition() { location_ = ""; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.expr.v1alpha1.SyntaxProto.internal_static_google_api_expr_v1alpha1_SourcePosition_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.expr.v1alpha1.SyntaxProto.internal_static_google_api_expr_v1alpha1_SourcePosition_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.expr.v1alpha1.SourcePosition.class, com.google.api.expr.v1alpha1.SourcePosition.Builder.class); } public static final int LOCATION_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object location_ = ""; /** *
   * The soucre location name (e.g. file name).
   * 
* * string location = 1; * @return The location. */ @java.lang.Override public java.lang.String getLocation() { java.lang.Object ref = location_; 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(); location_ = s; return s; } } /** *
   * The soucre location name (e.g. file name).
   * 
* * string location = 1; * @return The bytes for location. */ @java.lang.Override public com.google.protobuf.ByteString getLocationBytes() { java.lang.Object ref = location_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); location_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int OFFSET_FIELD_NUMBER = 2; private int offset_ = 0; /** *
   * The UTF-8 code unit offset.
   * 
* * int32 offset = 2; * @return The offset. */ @java.lang.Override public int getOffset() { return offset_; } public static final int LINE_FIELD_NUMBER = 3; private int line_ = 0; /** *
   * The 1-based index of the starting line in the source text
   * where the issue occurs, or 0 if unknown.
   * 
* * int32 line = 3; * @return The line. */ @java.lang.Override public int getLine() { return line_; } public static final int COLUMN_FIELD_NUMBER = 4; private int column_ = 0; /** *
   * The 0-based index of the starting position within the line of source text
   * where the issue occurs.  Only meaningful if line is nonzero.
   * 
* * int32 column = 4; * @return The column. */ @java.lang.Override public int getColumn() { return column_; } 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 (!com.google.protobuf.GeneratedMessage.isStringEmpty(location_)) { com.google.protobuf.GeneratedMessage.writeString(output, 1, location_); } if (offset_ != 0) { output.writeInt32(2, offset_); } if (line_ != 0) { output.writeInt32(3, line_); } if (column_ != 0) { output.writeInt32(4, column_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessage.isStringEmpty(location_)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(1, location_); } if (offset_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(2, offset_); } if (line_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(3, line_); } if (column_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(4, column_); } 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.google.api.expr.v1alpha1.SourcePosition)) { return super.equals(obj); } com.google.api.expr.v1alpha1.SourcePosition other = (com.google.api.expr.v1alpha1.SourcePosition) obj; if (!getLocation() .equals(other.getLocation())) return false; if (getOffset() != other.getOffset()) return false; if (getLine() != other.getLine()) return false; if (getColumn() != other.getColumn()) 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) + LOCATION_FIELD_NUMBER; hash = (53 * hash) + getLocation().hashCode(); hash = (37 * hash) + OFFSET_FIELD_NUMBER; hash = (53 * hash) + getOffset(); hash = (37 * hash) + LINE_FIELD_NUMBER; hash = (53 * hash) + getLine(); hash = (37 * hash) + COLUMN_FIELD_NUMBER; hash = (53 * hash) + getColumn(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.api.expr.v1alpha1.SourcePosition parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input); } public static com.google.api.expr.v1alpha1.SourcePosition parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static com.google.api.expr.v1alpha1.SourcePosition parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .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.google.api.expr.v1alpha1.SourcePosition 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.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * A specific position in source.
   * 
* * Protobuf type {@code google.api.expr.v1alpha1.SourcePosition} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:google.api.expr.v1alpha1.SourcePosition) com.google.api.expr.v1alpha1.SourcePositionOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.expr.v1alpha1.SyntaxProto.internal_static_google_api_expr_v1alpha1_SourcePosition_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.expr.v1alpha1.SyntaxProto.internal_static_google_api_expr_v1alpha1_SourcePosition_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.expr.v1alpha1.SourcePosition.class, com.google.api.expr.v1alpha1.SourcePosition.Builder.class); } // Construct using com.google.api.expr.v1alpha1.SourcePosition.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; location_ = ""; offset_ = 0; line_ = 0; column_ = 0; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.api.expr.v1alpha1.SyntaxProto.internal_static_google_api_expr_v1alpha1_SourcePosition_descriptor; } @java.lang.Override public com.google.api.expr.v1alpha1.SourcePosition getDefaultInstanceForType() { return com.google.api.expr.v1alpha1.SourcePosition.getDefaultInstance(); } @java.lang.Override public com.google.api.expr.v1alpha1.SourcePosition build() { com.google.api.expr.v1alpha1.SourcePosition result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.api.expr.v1alpha1.SourcePosition buildPartial() { com.google.api.expr.v1alpha1.SourcePosition result = new com.google.api.expr.v1alpha1.SourcePosition(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.api.expr.v1alpha1.SourcePosition result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.location_ = location_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.offset_ = offset_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.line_ = line_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.column_ = column_; } } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.api.expr.v1alpha1.SourcePosition) { return mergeFrom((com.google.api.expr.v1alpha1.SourcePosition)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.api.expr.v1alpha1.SourcePosition other) { if (other == com.google.api.expr.v1alpha1.SourcePosition.getDefaultInstance()) return this; if (!other.getLocation().isEmpty()) { location_ = other.location_; bitField0_ |= 0x00000001; onChanged(); } if (other.getOffset() != 0) { setOffset(other.getOffset()); } if (other.getLine() != 0) { setLine(other.getLine()); } if (other.getColumn() != 0) { setColumn(other.getColumn()); } 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: { location_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 16: { offset_ = input.readInt32(); bitField0_ |= 0x00000002; break; } // case 16 case 24: { line_ = input.readInt32(); bitField0_ |= 0x00000004; break; } // case 24 case 32: { column_ = input.readInt32(); bitField0_ |= 0x00000008; break; } // case 32 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 java.lang.Object location_ = ""; /** *
     * The soucre location name (e.g. file name).
     * 
* * string location = 1; * @return The location. */ public java.lang.String getLocation() { java.lang.Object ref = location_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); location_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The soucre location name (e.g. file name).
     * 
* * string location = 1; * @return The bytes for location. */ public com.google.protobuf.ByteString getLocationBytes() { java.lang.Object ref = location_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); location_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The soucre location name (e.g. file name).
     * 
* * string location = 1; * @param value The location to set. * @return This builder for chaining. */ public Builder setLocation( java.lang.String value) { if (value == null) { throw new NullPointerException(); } location_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * The soucre location name (e.g. file name).
     * 
* * string location = 1; * @return This builder for chaining. */ public Builder clearLocation() { location_ = getDefaultInstance().getLocation(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * The soucre location name (e.g. file name).
     * 
* * string location = 1; * @param value The bytes for location to set. * @return This builder for chaining. */ public Builder setLocationBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); location_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private int offset_ ; /** *
     * The UTF-8 code unit offset.
     * 
* * int32 offset = 2; * @return The offset. */ @java.lang.Override public int getOffset() { return offset_; } /** *
     * The UTF-8 code unit offset.
     * 
* * int32 offset = 2; * @param value The offset to set. * @return This builder for chaining. */ public Builder setOffset(int value) { offset_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * The UTF-8 code unit offset.
     * 
* * int32 offset = 2; * @return This builder for chaining. */ public Builder clearOffset() { bitField0_ = (bitField0_ & ~0x00000002); offset_ = 0; onChanged(); return this; } private int line_ ; /** *
     * The 1-based index of the starting line in the source text
     * where the issue occurs, or 0 if unknown.
     * 
* * int32 line = 3; * @return The line. */ @java.lang.Override public int getLine() { return line_; } /** *
     * The 1-based index of the starting line in the source text
     * where the issue occurs, or 0 if unknown.
     * 
* * int32 line = 3; * @param value The line to set. * @return This builder for chaining. */ public Builder setLine(int value) { line_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * The 1-based index of the starting line in the source text
     * where the issue occurs, or 0 if unknown.
     * 
* * int32 line = 3; * @return This builder for chaining. */ public Builder clearLine() { bitField0_ = (bitField0_ & ~0x00000004); line_ = 0; onChanged(); return this; } private int column_ ; /** *
     * The 0-based index of the starting position within the line of source text
     * where the issue occurs.  Only meaningful if line is nonzero.
     * 
* * int32 column = 4; * @return The column. */ @java.lang.Override public int getColumn() { return column_; } /** *
     * The 0-based index of the starting position within the line of source text
     * where the issue occurs.  Only meaningful if line is nonzero.
     * 
* * int32 column = 4; * @param value The column to set. * @return This builder for chaining. */ public Builder setColumn(int value) { column_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * The 0-based index of the starting position within the line of source text
     * where the issue occurs.  Only meaningful if line is nonzero.
     * 
* * int32 column = 4; * @return This builder for chaining. */ public Builder clearColumn() { bitField0_ = (bitField0_ & ~0x00000008); column_ = 0; onChanged(); return this; } // @@protoc_insertion_point(builder_scope:google.api.expr.v1alpha1.SourcePosition) } // @@protoc_insertion_point(class_scope:google.api.expr.v1alpha1.SourcePosition) private static final com.google.api.expr.v1alpha1.SourcePosition DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.api.expr.v1alpha1.SourcePosition(); } public static com.google.api.expr.v1alpha1.SourcePosition getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public SourcePosition 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.google.api.expr.v1alpha1.SourcePosition getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy