public static enum WSection.SectionMode extends Enum<WSection.SectionMode>
Enum Constant and Description |
---|
EAGER
An eager section will load its content via AJAX immediately after the page is loaded.
|
LAZY
A lazy section will load its content via AJAX when it is made visible.
|
Modifier and Type | Method and Description |
---|---|
static WSection.SectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WSection.SectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WSection.SectionMode LAZY
public static final WSection.SectionMode EAGER
public static WSection.SectionMode[] values()
for (WSection.SectionMode c : WSection.SectionMode.values()) System.out.println(c);
public static WSection.SectionMode 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.