Package org.eclipse.lsp4j
Class SymbolKindCapabilities
- java.lang.Object
-
- org.eclipse.lsp4j.SymbolKindCapabilities
-
public class SymbolKindCapabilities extends java.lang.ObjectSpecific capabilities for theSymbolKind.Since 3.4.0
-
-
Constructor Summary
Constructors Constructor Description SymbolKindCapabilities()SymbolKindCapabilities(java.util.List<SymbolKind> valueSet)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<SymbolKind>getValueSet()The symbol kind values the client supports.inthashCode()voidsetValueSet(java.util.List<SymbolKind> valueSet)The symbol kind values the client supports.java.lang.StringtoString()
-
-
-
Constructor Detail
-
SymbolKindCapabilities
public SymbolKindCapabilities()
-
SymbolKindCapabilities
public SymbolKindCapabilities(java.util.List<SymbolKind> valueSet)
-
-
Method Detail
-
getValueSet
public java.util.List<SymbolKind> getValueSet()
The symbol 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 symbol kinds from
SymbolKind.FiletoSymbolKind.Arrayas defined in the initial version of the protocol.
-
setValueSet
public void setValueSet(java.util.List<SymbolKind> valueSet)
The symbol 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 symbol kinds from
SymbolKind.FiletoSymbolKind.Arrayas 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
-
-