combobox.addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent arg0) {
if(arg0.getStateChange()==ItemEvent.SELECTED) {
For example if I sent the String ("01/01/2020"), I only want to see the rows with ("01/01/2020") and after this date.
You need to use a "date filter".
For example this filter will return all the date after a specific date:
RowFilter.dateFilter(ComparisonType.AFTER, new Date());
Read the RowFilter
API for other filters you can use.
Note:
You should NOT be storing String values in the model. You should store the date in an object that represents a date and then use a custom renderer to format the date. This will allow the filter from above to work properly.