Package org.eclipse.lsp4j
Class HoverCapabilities
- java.lang.Object
-
- org.eclipse.lsp4j.DynamicRegistrationCapabilities
-
- org.eclipse.lsp4j.HoverCapabilities
-
public class HoverCapabilities extends DynamicRegistrationCapabilities
Capabilities specific to the `textDocument/hover`
-
-
Constructor Summary
Constructors Constructor Description HoverCapabilities()HoverCapabilities(java.lang.Boolean dynamicRegistration)HoverCapabilities(java.util.List<java.lang.String> contentFormat, java.lang.Boolean dynamicRegistration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<java.lang.String>getContentFormat()Client supports the following content formats if the content property refers toMarkupContent.inthashCode()voidsetContentFormat(java.util.List<java.lang.String> contentFormat)Client supports the following content formats if the content property refers toMarkupContent.java.lang.StringtoString()-
Methods inherited from class org.eclipse.lsp4j.DynamicRegistrationCapabilities
getDynamicRegistration, setDynamicRegistration
-
-
-
-
Method Detail
-
getContentFormat
public java.util.List<java.lang.String> getContentFormat()
Client supports the following content formats if the content property refers toMarkupContent. The order describes the preferred format of the client.See
MarkupKindfor allowed values.Since 3.3.0
-
setContentFormat
public void setContentFormat(java.util.List<java.lang.String> contentFormat)
Client supports the following content formats if the content property refers toMarkupContent. The order describes the preferred format of the client.See
MarkupKindfor allowed values.Since 3.3.0
-
toString
public java.lang.String toString()
- Overrides:
toStringin classDynamicRegistrationCapabilities
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classDynamicRegistrationCapabilities
-
hashCode
public int hashCode()
- Overrides:
hashCodein classDynamicRegistrationCapabilities
-
-