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