Package com.smartgwt.client.types
Enum RecordComponentPoolingMode
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<RecordComponentPoolingMode>
,Constable
public enum RecordComponentPoolingMode
extends Enum<RecordComponentPoolingMode>
implements ValueEnum
The method of component-pooling to employ for
recordComponents
. -
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptioncomponents areclear()ed
when not in the viewport, but stay with a record until the record is dropped from cache.components are pooled and will be passed toupdateRecordComponent()
with therecordChanged
parameter set to true.components are destroyed when the record is not being rendered. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static RecordComponentPoolingMode
Returns the enum constant of this type with the specified name.static RecordComponentPoolingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
VIEWPORT
components are destroyed when the record is not being rendered. Best for large datasets where embedded components differ greatly per record.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "viewport". -
DATA
components areclear()ed
when not in the viewport, but stay with a record until the record is dropped from cache. Best for guaranteed small datasets.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "data". -
RECYCLE
components are pooled and will be passed toupdateRecordComponent()
with therecordChanged
parameter set to true. Best for large datasets where embedded components are uniform across different records and can be efficiently reconfigured to work with a new recordIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "recycle".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-
getValue
-