com.sencha.gxt.widget.core.client.tree
Enum TreeView.TreeViewRenderMode

java.lang.Object
  extended by java.lang.Enum<TreeView.TreeViewRenderMode>
      extended by com.sencha.gxt.widget.core.client.tree.TreeView.TreeViewRenderMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TreeView.TreeViewRenderMode>
Enclosing class:
TreeView<M>

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


Enum Constant Summary
ALL
          Render the entire node.
BUFFER_BODY
          Render the node body, used with buffered rendering.
BUFFER_WRAP
          Render the node wrapper, used with buffered rendering.
 
Method Summary
static TreeView.TreeViewRenderMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TreeView.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
compareTo, equals, 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 TreeView.TreeViewRenderMode ALL
Render the entire node.


BUFFER_BODY

public static final TreeView.TreeViewRenderMode BUFFER_BODY
Render the node body, used with buffered rendering.


BUFFER_WRAP

public static final TreeView.TreeViewRenderMode BUFFER_WRAP
Render the node wrapper, used with buffered rendering.

Method Detail

values

public static TreeView.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 (TreeView.TreeViewRenderMode c : TreeView.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 TreeView.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


Copyright © 2012. All Rights Reserved.