public enum EditationMode extends java.lang.Enum<EditationMode>
Enum Constant and Description |
---|
INSERT
Data are inserted at cursor position.
|
OVERWRITE
Data are replaced at cursor position.
|
Modifier and Type | Method and Description |
---|---|
static EditationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EditationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditationMode INSERT
public static final EditationMode OVERWRITE
public static EditationMode[] values()
for (EditationMode c : EditationMode.values()) System.out.println(c);
public static EditationMode 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 null