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
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
name
-
types
-
link
-
isHyperlink
public boolean isHyperlink()Returns the value of theisHyperlinkrecord component.- Returns:
- the value of the
isHyperlinkrecord component
-