public class CompletionItemLabelDetails
extends java.lang.Object
Since 3.17.0
| Constructor and Description |
|---|
CompletionItemLabelDetails() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getDescription()
An optional string which is rendered less prominently after
detail. |
java.lang.String |
getDetail()
An optional string which is rendered less prominently directly after
CompletionItem.label, without any spacing. |
int |
hashCode() |
void |
setDescription(java.lang.String description)
An optional string which is rendered less prominently after
detail. |
void |
setDetail(java.lang.String detail)
An optional string which is rendered less prominently directly after
CompletionItem.label, without any spacing. |
java.lang.String |
toString() |
@Pure public java.lang.String getDetail()
CompletionItem.label, without any spacing. Should be
used for function signatures or type annotations.public void setDetail(java.lang.String detail)
CompletionItem.label, without any spacing. Should be
used for function signatures or type annotations.@Pure public java.lang.String getDescription()
detail. Should be used for fully qualified
names or file path.public void setDescription(java.lang.String description)
detail. Should be used for fully qualified
names or file path.@Pure public java.lang.String toString()
toString in class java.lang.Object@Pure public boolean equals(java.lang.Object obj)
equals in class java.lang.Object@Pure public int hashCode()
hashCode in class java.lang.Object