public enum RowSelectionModel extends Enum<RowSelectionModel>
| Enum Constant and Description |
|---|
multiple |
multipleCheckBox |
multipleCheckBoxSelectAll |
single |
singleCheckBox |
singleRadioButton |
unselectable |
| Modifier and Type | Method and Description |
|---|---|
static RowSelectionModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowSelectionModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowSelectionModel unselectable
public static final RowSelectionModel single
public static final RowSelectionModel singleRadioButton
public static final RowSelectionModel multiple
public static final RowSelectionModel multipleCheckBox
public static final RowSelectionModel multipleCheckBoxSelectAll
public static final RowSelectionModel singleCheckBox
public static RowSelectionModel[] values()
for (RowSelectionModel c : RowSelectionModel.values()) System.out.println(c);
public static RowSelectionModel 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 nullCopyright © 2014. All rights reserved.