public enum TreeNodeType extends Enum<TreeNodeType>
| Modifier and Type | Method and Description |
|---|---|
static TreeNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TreeNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeNodeType ROOT
public static final TreeNodeType SPACE
public static final TreeNodeType WIKI
public static final TreeNodeType WIKIHOME
public static final TreeNodeType PAGE
public static TreeNodeType[] values()
for (TreeNodeType c : TreeNodeType.values()) System.out.println(c);
public static TreeNodeType 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 © 2003–2014 eXo Platform SAS. All rights reserved.