Package com.smartgwt.client.types
Enum FetchMode
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<FetchMode>
,Constable
Mode of fetching records from the server.
Generally, "paged" mode should be used unless the maximum number of records is guaranteed to be small.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
-
Enum Constant Details
-
BASIC
All records that match the current filter are fetched. Sorting is performed on the client.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "basic". -
PAGED
Only requested ranges of records are fetched, with predictive fetch ahead. Sorting is performed on the server.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "paged". -
LOCAL
All records available from the DataSource are fetched. Filtering by search criteria and sorting are both performed on the client.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "local".
-
-
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
-