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