| Enum Constant and Description | 
|---|
ACTIVE
This state is used when the entity is ready for business, it could be modified, used, etc. by users. 
 | 
ARCHIVED
This state is used for backward compatibility. 
 | 
DELETED
This state is used for installation scripts to signalize, that the entity should be deleted from registry. 
 | 
DROPPED
This state is used for installation scripts to signalize, that the entity should be completely dropped and removed from DB. 
 | 
PASSIVE
This state is used when the entity is created, bud can not be used for business. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static State | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static State[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
for (State c : State.values()) System.out.println(c);
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