Enum Constant and Description |
---|
FORCE_SAVE
Indicates that the buffer is to be saved after the change has been
applied.
|
KEEP_SAVED_STATE
Indicates that the buffer's save state has to be kept.
|
LEAVE_UNSAVED
Indicates that the buffer will be left with unsaved changes after
applying the change.
|
Modifier and Type | Method and Description |
---|---|
static SaveMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SaveMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveMode KEEP_SAVED_STATE
public static final SaveMode FORCE_SAVE
public static final SaveMode LEAVE_UNSAVED
public static SaveMode[] values()
for (SaveMode c : SaveMode.values()) System.out.println(c);
public static SaveMode 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 nullCopyright (c) 2014, 2020 1C-Soft LLC and others. Made available under the Eclipse Public License 2.0