-
Methods Method Description com.vaadin.flow.component.combobox.ComboBox.setDataProvider(DataProvider<T, String>) use instead one of thesetItemsmethods which provide access to eitherComboBoxListDataVieworComboBoxLazyDataViewcom.vaadin.flow.component.combobox.ComboBox.setItems(Stream<T>) Because the stream is collected to a list anyway, useComboBox.setItems(Collection)orComboBox.setItems(CallbackDataProvider.FetchCallback)instead.