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

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

There is a newer version: 1.0.46
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/api/expr/v1alpha1/syntax.proto

package com.google.api.expr.v1alpha1;

public interface SourcePositionOrBuilder extends
    // @@protoc_insertion_point(interface_extends:google.api.expr.v1alpha1.SourcePosition)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * The soucre location name (e.g. file name).
   * 
* * string location = 1; * @return The location. */ java.lang.String getLocation(); /** *
   * The soucre location name (e.g. file name).
   * 
* * string location = 1; * @return The bytes for location. */ com.google.protobuf.ByteString getLocationBytes(); /** *
   * The UTF-8 code unit offset.
   * 
* * int32 offset = 2; * @return The offset. */ int getOffset(); /** *
   * 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. */ int getLine(); /** *
   * 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. */ int getColumn(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy