public static enum DataModelTO.TOStatus extends Enum<DataModelTO.TOStatus>
| Enum Constant and Description |
|---|
PERSISTENT
An element that was read form persistent status, .java files.
|
PERSISTENT_EXTERNALLY_MODIFIED
Data objects that wasn't created by the data modeller, or was modified by an external editor and pushed to
the project repository.
|
VOLATILE
An element that was created in memory an was not saved to persistent .java file yet.
|
| Modifier and Type | Method and Description |
|---|---|
static DataModelTO.TOStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataModelTO.TOStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataModelTO.TOStatus PERSISTENT
public static final DataModelTO.TOStatus VOLATILE
public static final DataModelTO.TOStatus PERSISTENT_EXTERNALLY_MODIFIED
public static DataModelTO.TOStatus[] values()
for (DataModelTO.TOStatus c : DataModelTO.TOStatus.values()) System.out.println(c);
public static DataModelTO.TOStatus 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–2015 JBoss by Red Hat. All rights reserved.