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 boolean
equals(java.lang.Object obj)
WorkDoneProgressKind
getKind()
Always return endjava.lang.String
getMessage()
Optional, a final message indicating to for example indicate the outcome of the operation.int
hashCode()
void
setMessage(java.lang.String message)
Optional, a final message indicating to for example indicate the outcome of the operation.java.lang.String
toString()
-
-
-
Method Detail
-
getKind
public WorkDoneProgressKind getKind()
Always return end- Specified by:
getKind
in 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:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-