Package dk.gtz.graphedit.model.lsp
Enum Class ModelLanguageServerProgressType
java.lang.Object
java.lang.Enum<ModelLanguageServerProgressType>
dk.gtz.graphedit.model.lsp.ModelLanguageServerProgressType
- All Implemented Interfaces:
Serializable
,Comparable<ModelLanguageServerProgressType>
,Constable
Enumeration of the type of language server progress reports.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that a language server process has started.Indiccates that a language server process has finished successfully.Indicates that a language server process has finished errorniously.Indicates that a language server process has progressed, but is still running. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ModelLanguageServerProgressType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BEGIN
Indicates that a language server process has started. -
PROGRESS
Indicates that a language server process has progressed, but is still running. -
END
Indiccates that a language server process has finished successfully. -
END_FAIL
Indicates that a language server process has finished errorniously.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-