Record Class ParameterDescription
java.lang.Object
java.lang.Record
com.github._1c_syntax.bsl.languageserver.context.symbol.description.ParameterDescription
- Record Components:
name- Имя параметраtypes- Возможные типы параметра. Может быть пустымlink- Если описание параметров содержит только ссылку, то здесь будет ее значениеTODO Временное решение, надо будет продумать в следующем релизе
isHyperlink- Признак того, что параметр является гиперссылкой
public record ParameterDescription(String name, List<TypeDescription> types, String link, boolean isHyperlink)
extends Record
Описание параметра из комментария - описания метода
-
Constructor Summary
ConstructorsConstructorDescriptionParameterDescription(String name, List<TypeDescription> types, String link, boolean isHyperlink) Creates an instance of aParameterDescriptionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of theisHyperlinkrecord component.link()Returns the value of thelinkrecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.types()Returns the value of thetypesrecord component.
-
Constructor Details
-
ParameterDescription
public ParameterDescription(String name, List<TypeDescription> types, String link, boolean isHyperlink) Creates an instance of aParameterDescriptionrecord class.- Parameters:
name- the value for thenamerecord componenttypes- the value for thetypesrecord componentlink- the value for thelinkrecord componentisHyperlink- the value for theisHyperlinkrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object); primitive components are compared with '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
types
Returns the value of thetypesrecord component.- Returns:
- the value of the
typesrecord component
-
link
Returns the value of thelinkrecord component.- Returns:
- the value of the
linkrecord component
-
isHyperlink
public boolean isHyperlink()Returns the value of theisHyperlinkrecord component.- Returns:
- the value of the
isHyperlinkrecord component
-