public static enum DataModelerContext.EditionStatus extends Enum<DataModelerContext.EditionStatus>
| Enum Constant and Description |
|---|
EDITOR_CHANGED
Changes has been done in "Editor" tab and the code wasn't regenerated yet.
|
NO_CHANGES
No pending changes to process.
|
SOURCE_CHANGED
Changes has been done in the "Source" tab and the data object wasn't regenerated (parsed) yet.
|
| Modifier and Type | Method and Description |
|---|---|
static DataModelerContext.EditionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataModelerContext.EditionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataModelerContext.EditionStatus NO_CHANGES
public static final DataModelerContext.EditionStatus EDITOR_CHANGED
public static final DataModelerContext.EditionStatus SOURCE_CHANGED
public static DataModelerContext.EditionStatus[] values()
for (DataModelerContext.EditionStatus c : DataModelerContext.EditionStatus.values()) System.out.println(c);
public static DataModelerContext.EditionStatus 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.