public enum ExpansionComponentPoolingMode extends java.lang.Enum<ExpansionComponentPoolingMode> implements ValueEnum
expansionComponents
. Enum Constant and Description |
---|
DESTROY
auto-created, built-in components are destroyed when record are
collapsed . |
NONE
all expansion components are deparented from the grid when a record is
collapsed but are not destroyed. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static ExpansionComponentPoolingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpansionComponentPoolingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpansionComponentPoolingMode DESTROY
collapsed
.
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "destroy".
public static final ExpansionComponentPoolingMode NONE
collapsed
but are not destroyed. It is the responsibility of
the developer to handle component destruction
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static ExpansionComponentPoolingMode[] values()
for (ExpansionComponentPoolingMode c : ExpansionComponentPoolingMode.values()) System.out.println(c);
public static ExpansionComponentPoolingMode 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