public static enum Tree.Joint extends Enum<Tree.Joint>
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static Tree.Joint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tree.Joint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tree.Joint COLLAPSED
public static final Tree.Joint EXPANDED
public static final Tree.Joint NONE
public static Tree.Joint[] values()
for (Tree.Joint c : Tree.Joint.values()) System.out.println(c);
public static Tree.Joint 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 int value()
Copyright © 2012. All Rights Reserved.