com.extjs.gxt.ui.client.widget.treepanel
Enum TreePanelView.TreeViewRenderMode

java.lang.Object
  extended by java.lang.Enum<TreePanelView.TreeViewRenderMode>
      extended by com.extjs.gxt.ui.client.widget.treepanel.TreePanelView.TreeViewRenderMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TreePanelView.TreeViewRenderMode>
Enclosing class:
TreePanelView<M extends ModelData>

public static enum TreePanelView.TreeViewRenderMode
extends java.lang.Enum<TreePanelView.TreeViewRenderMode>


Enum Constant Summary
ALL
           
BODY
           
CONTAINER
           
MAIN
           
 
Method Summary
static TreePanelView.TreeViewRenderMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TreePanelView.TreeViewRenderMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALL

public static final TreePanelView.TreeViewRenderMode ALL

BODY

public static final TreePanelView.TreeViewRenderMode BODY

CONTAINER

public static final TreePanelView.TreeViewRenderMode CONTAINER

MAIN

public static final TreePanelView.TreeViewRenderMode MAIN
Method Detail

values

public static TreePanelView.TreeViewRenderMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TreePanelView.TreeViewRenderMode c : TreePanelView.TreeViewRenderMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TreePanelView.TreeViewRenderMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null