Record Class GlobalMemberInfoTool.Result
java.lang.Object
java.lang.Record
com.github._1c_syntax.bsl.languageserver.mcp.tools.GlobalMemberInfoTool.Result
- Record Components:
name- Имя члена в запрошенной локали.kind- Вид члена:FUNCTION,PROPERTYилиENUM.member- Описание члена (сигнатуры/типы/метаинформация).
- Enclosing class:
GlobalMemberInfoTool
public static record GlobalMemberInfoTool.Result(String name, String kind, TypeMemberDto member)
extends Record
Описание глобального члена.
-
Constructor Summary
ConstructorsConstructorDescriptionResult(String name, String kind, TypeMemberDto member) Creates an instance of aResultrecord 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.kind()Returns the value of thekindrecord component.member()Returns the value of thememberrecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Result
-
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
name
-
kind
-
member
-