Record Class IntBasedSymbolOccurrence

java.lang.Object
java.lang.Record
com.github._1c_syntax.bsl.languageserver.references.model.IntBasedSymbolOccurrence
Record Components:
occurrenceType - Тип обращения к символу.
symbol - Символ, к которому происходит обращение.
uri - URI файла, в котором расположено обращение.
startLine - Строка начала обращения.
startCharacter - Столбец начала обращения.
endLine - Строка конца обращения.
endCharacter - Столбец конца обращения.
All Implemented Interfaces:
SymbolOccurrence, Comparable<SymbolOccurrence>

public record IntBasedSymbolOccurrence(OccurrenceType occurrenceType, Symbol symbol, URI uri, int startLine, int startCharacter, int endLine, int endCharacter) extends Record implements SymbolOccurrence
Реализация SymbolOccurrence с координатами диапазона в int.

Используется для файлов, где строка или столбец не укладываются в short. Обычно создаётся через фабрику SymbolOccurrence.of(OccurrenceType, Symbol, URI, Range).

  • Constructor Details

    • IntBasedSymbolOccurrence

      public IntBasedSymbolOccurrence(OccurrenceType occurrenceType, Symbol symbol, URI uri, int startLine, int startCharacter, int endLine, int endCharacter)
      Creates an instance of a IntBasedSymbolOccurrence record class.
      Parameters:
      occurrenceType - the value for the occurrenceType record component
      symbol - the value for the symbol record component
      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

    • 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.
    • occurrenceType

      public OccurrenceType occurrenceType()
      Returns the value of the occurrenceType record component.
      Specified by:
      occurrenceType in interface SymbolOccurrence
      Returns:
      the value of the occurrenceType record component
    • symbol

      public Symbol symbol()
      Returns the value of the symbol record component.
      Specified by:
      symbol in interface SymbolOccurrence
      Returns:
      the value of the symbol record component
    • uri

      public URI uri()
      Returns the value of the uri record component.
      Specified by:
      uri in interface SymbolOccurrence
      Returns:
      the value of the uri record component
    • startLine

      public int startLine()
      Returns the value of the startLine record component.
      Specified by:
      startLine in interface SymbolOccurrence
      Returns:
      the value of the startLine record component
    • startCharacter

      public int startCharacter()
      Returns the value of the startCharacter record component.
      Specified by:
      startCharacter in interface SymbolOccurrence
      Returns:
      the value of the startCharacter record component
    • endLine

      public int endLine()
      Returns the value of the endLine record component.
      Specified by:
      endLine in interface SymbolOccurrence
      Returns:
      the value of the endLine record component
    • endCharacter

      public int endCharacter()
      Returns the value of the endCharacter record component.
      Specified by:
      endCharacter in interface SymbolOccurrence
      Returns:
      the value of the endCharacter record component