public enum SelectionChoice extends Enum<SelectionChoice>
UiFeatureSelectedValue.setSelection(SelectionChoice,
SelectionOperation)
Enum Constant and Description |
---|
ALL
This choice will affect all available items.
|
FIRST
This choice will affect the first available item.
|
LAST
This choice will affect the last available item.
|
Modifier and Type | Method and Description |
---|---|
static SelectionChoice |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectionChoice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionChoice ALL
SelectionMode.MULTIPLE_SELECTION
. Further some widgets allow
lazy loading of their data. This choice will only affect the items that are already loaded and available.
Otherwise a very large or infinite tree would be loaded completely into the client causing undesired
performance issues.public static final SelectionChoice FIRST
public static final SelectionChoice LAST
FIRST
public static SelectionChoice[] values()
for (SelectionChoice c : SelectionChoice.values()) System.out.println(c);
public static SelectionChoice 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 © 2001–2016 mmm-Team. All rights reserved.