public enum TextDocumentSaveReason extends java.lang.Enum<TextDocumentSaveReason>
| Enum Constant and Description |
|---|
AfterDelay
Automatic after a delay.
|
FocusOut
When the editor lost focus.
|
Manual
Manually triggered, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static TextDocumentSaveReason |
forValue(int value) |
int |
getValue() |
static TextDocumentSaveReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextDocumentSaveReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextDocumentSaveReason Manual
public static final TextDocumentSaveReason AfterDelay
public static final TextDocumentSaveReason FocusOut
public static TextDocumentSaveReason[] values()
for (TextDocumentSaveReason c : TextDocumentSaveReason.values()) System.out.println(c);
public static TextDocumentSaveReason valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static TextDocumentSaveReason forValue(int value)