public enum SyncServiceEventType extends Enum<SyncServiceEventType>
| Enum Constant and Description |
|---|
ChildNodesChanged |
NodeCreated |
NodeDataChanged |
NodeDeleted |
None |
ServiceDown |
ServiceUp |
| Modifier and Type | Method and Description |
|---|---|
static SyncServiceEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SyncServiceEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncServiceEventType None
public static final SyncServiceEventType NodeCreated
public static final SyncServiceEventType NodeDeleted
public static final SyncServiceEventType NodeDataChanged
public static final SyncServiceEventType ChildNodesChanged
public static final SyncServiceEventType ServiceUp
public static final SyncServiceEventType ServiceDown
public static SyncServiceEventType[] values()
for (SyncServiceEventType c : SyncServiceEventType.values()) System.out.println(c);
public static SyncServiceEventType 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 © 2014. All Rights Reserved.