VALUE
- is the generic type of the selectable values
.public interface AttributeReadSelectedValue<VALUE>
selected value(s)
(items) of an
object.SelectionMode
Modifier and Type | Method and Description |
---|---|
VALUE |
getSelectedValue()
This method gets the currently selected value (item).
|
Collection<VALUE> |
getSelectedValues()
This method gets the currently selected values.
|
int |
getSelectionCount()
Logically the same as
getSelectedValues() .size() but more efficient. |
boolean |
hasSelectedValue() |
boolean hasSelectedValue()
true
if at least one value is selected
,
false
otherwise.VALUE getSelectedValue()
null
if no value is selected.Collection<VALUE> getSelectedValues()
Collection
is
unspecified.Collection
with all selected values. Will be empty
if
nothing is selected.getSelectedValue()
int getSelectionCount()
getSelectedValues()
.size() but more efficient.selected values
.Copyright © 2001–2016 mmm-Team. All rights reserved.