Package org.eclipse.lsp4j
Class WorkDoneProgressEnd
- java.lang.Object
-
- org.eclipse.lsp4j.WorkDoneProgressEnd
-
- All Implemented Interfaces:
WorkDoneProgressNotification
public class WorkDoneProgressEnd extends java.lang.Object implements WorkDoneProgressNotification
The notification payload about progress reporting. Signaling the end of a progress reporting is done using the following payload:Since 3.15.0
-
-
Constructor Summary
Constructors Constructor Description WorkDoneProgressEnd()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)WorkDoneProgressKindgetKind()Always return endjava.lang.StringgetMessage()Optional, a final message indicating to for example indicate the outcome of the operation.inthashCode()voidsetMessage(java.lang.String message)Optional, a final message indicating to for example indicate the outcome of the operation.java.lang.StringtoString()
-
-
-
Method Detail
-
getKind
public WorkDoneProgressKind getKind()
Always return end- Specified by:
getKindin interfaceWorkDoneProgressNotification
-
getMessage
public java.lang.String getMessage()
Optional, a final message indicating to for example indicate the outcome of the operation.
-
setMessage
public void setMessage(java.lang.String message)
Optional, a final message indicating to for example indicate the outcome of the operation.
-
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
-
-