Record Class Location

java.lang.Object
java.lang.Record
com.github._1c_syntax.bsl.languageserver.references.model.Location
Record Components:
uri - URI файла, в котором расположен символ.
startLine - Строка, в которой начинается символ.
startCharacter - Столбец, в котором начинается символ.
endLine - Строка, в которой заканчивается символ.
endCharacter - Столбец, в котором заканчивается символ.

public record Location(URI uri, int startLine, int startCharacter, int endLine, int endCharacter) extends Record
Месторасположение появления символа.
  • Constructor Details

    • Location

      public Location(URI uri, Range range)
    • Location

      public Location(URI uri, int startLine, int startCharacter, int endLine, int endCharacter)
      Creates an instance of a Location record class.
      Parameters:
      uri - the value for the uri record component
      startLine - the value for the startLine record component
      startCharacter - the value for the startCharacter record component
      endLine - the value for the endLine record component
      endCharacter - the value for the endCharacter record component
  • Method Details

    • getRange

      public Range getRange()
    • getStart

      public Position getStart()
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • uri

      public URI uri()
      Returns the value of the uri record component.
      Returns:
      the value of the uri record component
    • startLine

      public int startLine()
      Returns the value of the startLine record component.
      Returns:
      the value of the startLine record component
    • startCharacter

      public int startCharacter()
      Returns the value of the startCharacter record component.
      Returns:
      the value of the startCharacter record component
    • endLine

      public int endLine()
      Returns the value of the endLine record component.
      Returns:
      the value of the endLine record component
    • endCharacter

      public int endCharacter()
      Returns the value of the endCharacter record component.
      Returns:
      the value of the endCharacter record component