Package org.eclipse.lsp4j
Class InlayHintRegistrationOptions
- java.lang.Object
-
- org.eclipse.lsp4j.TextDocumentRegistrationOptions
-
- org.eclipse.lsp4j.AbstractTextDocumentRegistrationAndWorkDoneProgressOptions
-
- org.eclipse.lsp4j.InlayHintRegistrationOptions
-
- All Implemented Interfaces:
WorkDoneProgressOptions
public class InlayHintRegistrationOptions extends AbstractTextDocumentRegistrationAndWorkDoneProgressOptions
Inlay hint options used during static or dynamic registration.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description InlayHintRegistrationOptions()InlayHintRegistrationOptions(java.lang.String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetId()The id used to register the request.java.lang.BooleangetResolveProvider()The server provides support to resolve additional information for an inlay hint item.inthashCode()voidsetId(java.lang.String id)The id used to register the request.voidsetResolveProvider(java.lang.Boolean resolveProvider)The server provides support to resolve additional information for an inlay hint item.java.lang.StringtoString()-
Methods inherited from class org.eclipse.lsp4j.AbstractTextDocumentRegistrationAndWorkDoneProgressOptions
getWorkDoneProgress, setWorkDoneProgress
-
Methods inherited from class org.eclipse.lsp4j.TextDocumentRegistrationOptions
getDocumentSelector, setDocumentSelector
-
-
-
-
Method Detail
-
getId
public java.lang.String getId()
The id used to register the request. The id can be used to deregister the request again. See alsoRegistration.id.
-
setId
public void setId(java.lang.String id)
The id used to register the request. The id can be used to deregister the request again. See alsoRegistration.id.
-
getResolveProvider
public java.lang.Boolean getResolveProvider()
The server provides support to resolve additional information for an inlay hint item.
-
setResolveProvider
public void setResolveProvider(java.lang.Boolean resolveProvider)
The server provides support to resolve additional information for an inlay hint item.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classAbstractTextDocumentRegistrationAndWorkDoneProgressOptions
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classAbstractTextDocumentRegistrationAndWorkDoneProgressOptions
-
hashCode
public int hashCode()
- Overrides:
hashCodein classAbstractTextDocumentRegistrationAndWorkDoneProgressOptions
-
-