public enum WorkingMode extends java.lang.Enum<WorkingMode>
AlignmentArea.| Enum Constant and Description |
|---|
ALIGN
Gaps can be inserted or deleted.
|
EDIT
All tokens can be deleted or inserted.
|
VIEW
Read only view
|
| Modifier and Type | Method and Description |
|---|---|
static WorkingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkingMode VIEW
public static final WorkingMode ALIGN
public static final WorkingMode EDIT
public static WorkingMode[] values()
for (WorkingMode c : WorkingMode.values()) System.out.println(c);
public static WorkingMode 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