-
Methods Method Description com.vaadin.flow.component.listbox.ListBoxBase.getDataProvider() useListBoxBase.getListDataView()orListBoxBase.getGenericDataView()insteadcom.vaadin.flow.component.listbox.ListBoxBase.setDataProvider(DataProvider<ITEM, ?>) use instead one of thesetItemsmethods which provide access to eitherListBoxListDataVieworListBoxDataViewcom.vaadin.flow.component.listbox.ListBoxBase.setItems(Stream<ITEM>) Because the stream is collected to a list anyway, useHasListDataView.setItems(Collection)instead.