public static enum SelectionBehavior.SelectionMode extends Enum<SelectionBehavior.SelectionMode>
SelectionBehavior.setSelectionMode(com.telerik.widget.list.SelectionBehavior.SelectionMode)
method.Enum Constant and Description |
---|
MULTIPLE
A mode that specifies that more than one item can be selected at a time.
|
SINGLE
A mode that specifies that only one item can be selected at a time.
|
Modifier and Type | Method and Description |
---|---|
static SelectionBehavior.SelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectionBehavior.SelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionBehavior.SelectionMode MULTIPLE
public static final SelectionBehavior.SelectionMode SINGLE
public static SelectionBehavior.SelectionMode[] values()
for (SelectionBehavior.SelectionMode c : SelectionBehavior.SelectionMode.values()) System.out.println(c);
public static SelectionBehavior.SelectionMode 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