com.smartgwt.client.types
Enum TreeFilterMode

java.lang.Object
  extended by java.lang.Enum<TreeFilterMode>
      extended by com.smartgwt.client.types.TreeFilterMode
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<TreeFilterMode>

public enum TreeFilterMode
extends Enum<TreeFilterMode>
implements ValueEnum

Mode for applying criteria to a tree.


Enum Constant Summary
KEEP_PARENTS
          parent nodes are kept if they have children which match the criteria, or, in a tree with loadDataOnDemand:true, if they have not loaded children yet.
STRICT
          only nodes that actually match criteria are shown.
 
Method Summary
 String getValue()
           
static TreeFilterMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TreeFilterMode[] 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

STRICT

public static final TreeFilterMode STRICT
only nodes that actually match criteria are shown. If a parent does not match the criteria, it will not be shown, even if it has children that do match the criteria


KEEP_PARENTS

public static final TreeFilterMode KEEP_PARENTS
parent nodes are kept if they have children which match the criteria, or, in a tree with loadDataOnDemand:true, if they have not loaded children yet.

Method Detail

values

public static TreeFilterMode[] 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 (TreeFilterMode c : TreeFilterMode.values())
    System.out.println(c);

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

valueOf

public static TreeFilterMode valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()
Specified by:
getValue in interface ValueEnum