public static enum Event.EventType extends Enum<Event.EventType>
| Enum Constant and Description |
|---|
CHILDREN_CHANGE
list of children changed
|
CONFIG_CHANGE
the config has changed, data could contain new config
|
INVALIDATE
Object cache should refreshed, there is no associated data.
|
REMOVED
object has been removed
|
STATUS_CHANGE
status changed, data contains new status
|
TASK
the task update
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Event.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.EventType TASK
public static final Event.EventType INVALIDATE
public static final Event.EventType CONFIG_CHANGE
public static final Event.EventType STATUS_CHANGE
public static final Event.EventType REMOVED
public static final Event.EventType CHILDREN_CHANGE
public final String code
public static Event.EventType[] values()
for (Event.EventType c : Event.EventType.values()) System.out.println(c);
public static Event.EventType 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 nullpublic String toString()
toString in class Enum<Event.EventType>Copyright © 2014 Cloud Software Group, Inc.. All Rights Reserved.