Package org.eclipse.lsp4j
Class CompletionItemKindCapabilities
- java.lang.Object
-
- org.eclipse.lsp4j.CompletionItemKindCapabilities
-
public class CompletionItemKindCapabilities extends java.lang.ObjectThe client supports the followingCompletionItemKindspecific capabilities.Since 3.4.0
-
-
Constructor Summary
Constructors Constructor Description CompletionItemKindCapabilities()CompletionItemKindCapabilities(java.util.List<CompletionItemKind> valueSet)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<CompletionItemKind>getValueSet()The completion item kind values the client supports.inthashCode()voidsetValueSet(java.util.List<CompletionItemKind> valueSet)The completion item kind values the client supports.java.lang.StringtoString()
-
-
-
Constructor Detail
-
CompletionItemKindCapabilities
public CompletionItemKindCapabilities()
-
CompletionItemKindCapabilities
public CompletionItemKindCapabilities(java.util.List<CompletionItemKind> valueSet)
-
-
Method Detail
-
getValueSet
public java.util.List<CompletionItemKind> getValueSet()
The completion item kind values the client supports. When this property exists the client also guarantees that it will handle values outside its set gracefully and falls back to a default value when unknown.If this property is not present the client only supports the completion items kinds from
CompletionItemKind.TexttoCompletionItemKind.Referenceas defined in the initial version of the protocol.
-
setValueSet
public void setValueSet(java.util.List<CompletionItemKind> valueSet)
The completion item kind values the client supports. When this property exists the client also guarantees that it will handle values outside its set gracefully and falls back to a default value when unknown.If this property is not present the client only supports the completion items kinds from
CompletionItemKind.TexttoCompletionItemKind.Referenceas defined in the initial version of the protocol.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-