public enum PoshTreeEvent extends Enum<PoshTreeEvent>
| Enum Constant and Description |
|---|
CHILD_NODE_MOVED
Child was moved
TODO: Not enough info, where was it before?
|
NEW_CHILD_NODE
PoshDataNode has a new child PoshDataNode
|
NODE_DELETED
PoshDataNode is the deleted node, but probably not necessary
|
| Modifier and Type | Method and Description |
|---|---|
static PoshTreeEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PoshTreeEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PoshTreeEvent NEW_CHILD_NODE
public static final PoshTreeEvent NODE_DELETED
public static final PoshTreeEvent CHILD_NODE_MOVED
public static PoshTreeEvent[] values()
for (PoshTreeEvent c : PoshTreeEvent.values()) System.out.println(c);
public static PoshTreeEvent 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 © 2012 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.