public static enum LoadOnDemandBehavior.LoadOnDemandMode extends Enum<LoadOnDemandBehavior.LoadOnDemandMode>
LoadOnDemandBehavior.setMode(com.telerik.widget.list.LoadOnDemandBehavior.LoadOnDemandMode)
method.Enum Constant and Description |
---|
AUTOMATIC
A mode that is represented by a loading indicator at the end of the list
that displays while new items are loading.
|
MANUAL
A mode that is represented by a button at the end of the list
that the user can click to request more items.
|
Modifier and Type | Method and Description |
---|---|
static LoadOnDemandBehavior.LoadOnDemandMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadOnDemandBehavior.LoadOnDemandMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadOnDemandBehavior.LoadOnDemandMode MANUAL
public static final LoadOnDemandBehavior.LoadOnDemandMode AUTOMATIC
public static LoadOnDemandBehavior.LoadOnDemandMode[] values()
for (LoadOnDemandBehavior.LoadOnDemandMode c : LoadOnDemandBehavior.LoadOnDemandMode.values()) System.out.println(c);
public static LoadOnDemandBehavior.LoadOnDemandMode 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 null