public enum TreeNodeEvent extends Enum<TreeNodeEvent>
| Modifier and Type | Method and Description |
|---|---|
static TreeNodeEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeNodeEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeNodeEvent SELECT
public static final TreeNodeEvent EXPAND
public static final TreeNodeEvent COLLAPSE
public static TreeNodeEvent[] values()
for (TreeNodeEvent c : TreeNodeEvent.values()) System.out.println(c);
public static TreeNodeEvent 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 © 2015. All rights reserved.