java.lang.Objectjava.lang.Enum<Updation.UpdationType>
ucot.model.Updation.UpdationType
public static enum Updation.UpdationType
Contains information about the updation type.
Enum Constant Summary | |
---|---|
CLEAR
Model has just been completely wiped out. |
|
DELETION
Deletion ocurred. |
|
MODIFICATION_STARTED
Big chunk of modification started. |
|
MODIFY
Modification occurred. |
|
NEW
Cration ocurred. |
|
NOP
No operation. |
|
READY
Big chunk of modification is done. |
Method Summary | |
---|---|
static Updation.UpdationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Updation.UpdationType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Updation.UpdationType NOP
public static final Updation.UpdationType MODIFY
public static final Updation.UpdationType NEW
public static final Updation.UpdationType DELETION
public static final Updation.UpdationType CLEAR
public static final Updation.UpdationType READY
public static final Updation.UpdationType MODIFICATION_STARTED
Method Detail |
---|
public static final Updation.UpdationType[] values()
for(Updation.UpdationType c : Updation.UpdationType.values()) System.out.println(c);
public static Updation.UpdationType 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 name