public static enum DataModelerContext.EditionMode extends Enum<DataModelerContext.EditionMode>
| Enum Constant and Description |
|---|
GRAPHICAL_MODE
The graphical editor is editing the content.
|
SOURCE_MODE
The source editor is editing the code.
|
| Modifier and Type | Method and Description |
|---|---|
static DataModelerContext.EditionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataModelerContext.EditionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataModelerContext.EditionMode SOURCE_MODE
public static final DataModelerContext.EditionMode GRAPHICAL_MODE
public static DataModelerContext.EditionMode[] values()
for (DataModelerContext.EditionMode c : DataModelerContext.EditionMode.values()) System.out.println(c);
public static DataModelerContext.EditionMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2001–2021 JBoss by Red Hat. All rights reserved.