public enum TreeFilterMode extends java.lang.Enum<TreeFilterMode> implements ValueEnum
| Enum Constant and Description |
|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static TreeFilterMode | valueOf(java.lang.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. |
public static final TreeFilterMode STRICT
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "strict".
public static final TreeFilterMode KEEP_PARENTS
loadDataOnDemand:true, if they have not loaded children yet. If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "keepParents".
public static TreeFilterMode[] values()
for (TreeFilterMode c : TreeFilterMode.values()) System.out.println(c);
public static TreeFilterMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null