A method that clears any selection prior to setting the selection to the given index.
A method that clears any selection prior to setting the selection to the given index.
This method will clear the selection of the item in the given index.
This method will clear the selection of the item in the given index.
Clears the selection model of all selected indices.
Clears the selection model of all selected indices.
JavaFX object to be wrapped.
JavaFX object to be wrapped.
Verifies if a object is equals to this delegate.
Verifies if a object is equals to this delegate.
Object to be compared.
if the other object is equals to this delegate or not.
The delegate hashcode
This method is available to test whether there are any selected indices/items.
This method is available to test whether there are any selected indices/items.
Convenience method to inform if the given index is currently selected in this SelectionModel.
Convenience method to inform if the given index is currently selected in this SelectionModel.
This method will attempt to select the index that contains the given object.
This method will attempt to select the index that contains the given object.
This will select the given index in the selection model, assuming the index is within the valid range (i.e.
This will select the given index in the selection model, assuming the index is within the valid range (i.e.
Convenience method to select all available indices.
This method will attempt to select the first index in the control.
This method will attempt to select the first index in the control.
This method allows for one or more selections to be set at the same time.
This method allows for one or more selections to be set at the same time. It will ignore any value that is not within the valid range (i.e. greater than or equal to zero, and less than the total number of items in the underlying data model). Any duplication of indices will be ignored.
If there is already one or more indices selected in this model, calling this method will not clear these selections - to do so it is necessary to first call clearSelection.
The last valid value given will become the selected index / selected item.
This method will attempt to select the last index in the control.
This method will attempt to select the last index in the control.
This method will attempt to select the index directly after the current focused index.
This method will attempt to select the index directly after the current focused index.
This method will attempt to select the index directly before the current focused index.
This method will attempt to select the index directly before the current focused index.
Selects all indices from the given start index to the item before the given end index.
Selects all indices from the given start index to the item before the given end index. This means that the selection is inclusive of the start index, and exclusive of the end index. This method will work regardless of whether start < end or start > end: the only constant is that the index before the given end index will become the selected index.
If there is already one or more indices selected in this model, calling this method will not clear these selections - to do so it is necessary to first call clearSelection.
The first index to select - this index will be selected.
The last index of the selection - this index will not be selected.
Refers to the selected index property, which is used to indicate the currently selected index value in the selection model.
Refers to the selected index property, which is used to indicate the currently selected index value in the selection model.
Returns a read-only ObservableList of all selected indices.
Returns a read-only ObservableList of all selected indices. The ObservableList will be updated by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.
Refers to the selected item property, which is used to indicate the currently selected item in the selection model.
Refers to the selected item property, which is used to indicate the currently selected item in the selection model.
Returns a read-only ObservableList of all selected items.
Returns a read-only ObservableList of all selected items. The ObservableList will be updated further by the selection model to always reflect changes in selection. This can be observed by adding a ListChangeListener to the returned ObservableList.
Specifies the selection mode to use in this selection model.
Specifies the selection mode to use in this selection model. The selection mode specifies how many items in the underlying data model can be selected at any one time.
By default, the selection mode is SelectionMode.SINGLE.
Returns the original delegate's toString()
adding a [SFX]
prefix.