|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FetchMode>
com.smartgwt.client.types.FetchMode
public enum FetchMode
Mode of fetching records from the server.
Generally, "paged" mode should be used unless the maximum number of records is guaranteed to be small.
Enum Constant Summary | |
---|---|
BASIC
All records that match the current filter are fetched. |
|
LOCAL
All records available from the DataSource are fetched. |
|
PAGED
Only requested ranges of records are fetched, with predictive fetch ahead. |
Method Summary | |
---|---|
String |
getValue()
|
static FetchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FetchMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FetchMode BASIC
public static final FetchMode PAGED
public static final FetchMode LOCAL
Method Detail |
---|
public static FetchMode[] values()
for (FetchMode c : FetchMode.values()) System.out.println(c);
public static FetchMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |