public static enum WTree.ExpandMode extends Enum<WTree.ExpandMode>
Enum Constant and Description |
---|
CLIENT
Indicates that row expansion occurs on the client.
|
DYNAMIC
Indicates that row expansion should make an AJAX call every time.
|
LAZY
Indicates that row expansion occurs once, via AJAX.
|
Modifier and Type | Method and Description |
---|---|
static WTree.ExpandMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WTree.ExpandMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WTree.ExpandMode CLIENT
public static final WTree.ExpandMode LAZY
public static final WTree.ExpandMode DYNAMIC
public static WTree.ExpandMode[] values()
for (WTree.ExpandMode c : WTree.ExpandMode.values()) System.out.println(c);
public static WTree.ExpandMode 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 © 2021. All rights reserved.