public static enum SelectionBehavior.SelectionOnTouch extends Enum<SelectionBehavior.SelectionOnTouch>
SelectionBehavior.setSelectionOnTouch(com.telerik.widget.list.SelectionBehavior.SelectionOnTouch)
method.Enum Constant and Description |
---|
AFTER_START
A mode that specifies that the single tap gesture should be considered only when the selection is in progress.
|
ALWAYS
A mode that specifies that the single tap gesture should be regarded the same way as the long tap.
|
NEVER
A mode that specifies that single tap gesture should never be considered by this behavior.
|
Modifier and Type | Method and Description |
---|---|
static SelectionBehavior.SelectionOnTouch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectionBehavior.SelectionOnTouch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionBehavior.SelectionOnTouch NEVER
public static final SelectionBehavior.SelectionOnTouch ALWAYS
public static final SelectionBehavior.SelectionOnTouch AFTER_START
public static SelectionBehavior.SelectionOnTouch[] values()
for (SelectionBehavior.SelectionOnTouch c : SelectionBehavior.SelectionOnTouch.values()) System.out.println(c);
public static SelectionBehavior.SelectionOnTouch 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