A B C F G H I K L M N O P R S T U V 
All Classes All Packages

A

addCustomValueSetListener(ComponentEventListener<ComboBoxBase.CustomValueSetEvent<TComponent>>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Adds a listener for the event which is fired when user inputs a string value that does not match any existing items and commits it eg.
addFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
Adds a filter to be applied to all queries.
addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
addSelectionListener(MultiSelectionListener<MultiSelectComboBox<TItem>, TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
 
addThemeVariants(ComboBoxVariant...) - Method in class com.vaadin.flow.component.combobox.ComboBox
 
addToPrefix(Component...) - Method in class com.vaadin.flow.component.combobox.ComboBox
Deprecated.
since v23.3

B

BOTH - com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Field expands horizontally until max-width is reached, then expands vertically and chips wrap.

C

com.vaadin.flow.component.combobox - package com.vaadin.flow.component.combobox
 
com.vaadin.flow.component.combobox.dataview - package com.vaadin.flow.component.combobox.dataview
 
ComboBox<T> - Class in com.vaadin.flow.component.combobox
Combo Box allows the user to choose a value from a filterable list of options presented in an overlay.
ComboBox() - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Default constructor.
ComboBox(int) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Creates an empty combo box with the defined page size for lazy loading.
ComboBox(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>, T>>) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Constructs a combo box with a value change listener.
ComboBox(String) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Creates an empty combo box with the defined label.
ComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>, T>>) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Constructs a combo box with the defined label and a value change listener.
ComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>, T>>, T...) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Constructs a combo box with the defined label, a value change listener and populated with the items in the array.
ComboBox(String, Collection<T>) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Creates a combo box with the defined label and populated with the items in the collection.
ComboBox(String, T...) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
Creates a combo box with the defined label and populated with the items in the array.
ComboBox.FetchItemsCallback<T> - Interface in com.vaadin.flow.component.combobox
A callback method for fetching items.
ComboBox.ItemFilter<T> - Interface in com.vaadin.flow.component.combobox
Predicate to check ComboBox items against user typed strings.
ComboBoxBase<TComponent extends ComboBoxBase<TComponent,​TItem,​TValue>,​TItem,​TValue> - Class in com.vaadin.flow.component.combobox
Provides base functionality for combo box related components, such as ComboBox
ComboBoxBase(String, TValue, Class<TValueProperty>, SerializableBiFunction<TComponent, TValueProperty, TValue>, SerializableBiFunction<TComponent, TValue, TValueProperty>) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxBase
Constructs a new ComboBoxBase instance
ComboBoxBase.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,​?,​?>> - Class in com.vaadin.flow.component.combobox
Event that is dispatched from a combo box component, if the component allows setting custom values, and the user has entered a non-empty value that does not match any of the existing items
ComboBoxDataCommunicator<TItem> - Class in com.vaadin.flow.component.combobox
Customized data communicator that uses a custom key mapper for preserving keys of selected items when using lazy-loading.
ComboBoxDataCommunicator(ComboBoxBase<?, TItem, ?>, DataGenerator<TItem>, ArrayUpdater, SerializableConsumer<JsonArray>, StateNode, boolean) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator
 
ComboBoxDataCommunicator.SelectionPreservingKeyMapper<TItem> - Class in com.vaadin.flow.component.combobox
Customized key mapper that does not remove key for an item as long as it is selected.
ComboBoxDataView<T> - Class in com.vaadin.flow.component.combobox.dataview
Implementation of generic data view for ComboBox.
ComboBoxDataView(DataCommunicator<T>, ComboBoxBase<?, T, ?>) - Constructor for class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
Creates a new generic data view for ComboBox and verifies the passed data provider is compatible with this data view implementation.
ComboBoxLazyDataView<T> - Class in com.vaadin.flow.component.combobox.dataview
Data view implementation for ComboBox with lazy data fetching.
ComboBoxLazyDataView(DataCommunicator<T>, Component) - Constructor for class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
Creates a new lazy data view for ComboBox and verifies the passed data provider is compatible with this data view implementation.
ComboBoxListDataView<T> - Class in com.vaadin.flow.component.combobox.dataview
Data view implementation for ComboBox with in-memory list data.
ComboBoxListDataView(DataCommunicator<T>, ComboBoxBase<?, T, ?>, SerializableBiConsumer<SerializablePredicate<T>, SerializableComparator<T>>) - Constructor for class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
Creates a new instance of ComboBox in-memory data view and verifies the passed data provider is compatible with this data view implementation.
ComboBoxVariant - Enum in com.vaadin.flow.component.combobox
Set of theme variants applicable for vaadin-combo-box component.
CustomValueSetEvent(TComponent, boolean, String) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxBase.CustomValueSetEvent
 
CustomValueSetEvent(TComponent, boolean, String) - Constructor for class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.CustomValueSetEvent
Deprecated.
 

F

fetchItems(String, int, int) - Method in interface com.vaadin.flow.component.combobox.ComboBox.FetchItemsCallback
Returns a stream of items that match the given filter, limiting the results with given offset and limit.
FilterChangeEvent(R, boolean) - Constructor for class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.FilterChangeEvent
Deprecated.
 

G

GeneratedVaadinComboBox - Class in com.vaadin.flow.component.combobox
Deprecated.
This class is not used in any API, and will be removed in a future major version.
GeneratedVaadinComboBox() - Constructor for class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox
Deprecated.
 
GeneratedVaadinComboBox.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,​?,​?>> - Class in com.vaadin.flow.component.combobox
Deprecated.
Use ComboBoxBase.CustomValueSetEvent instead. This class will be removed in a future major version.
GeneratedVaadinComboBox.FilterChangeEvent<R extends ComboBoxBase<R,​?,​?>> - Class in com.vaadin.flow.component.combobox
Deprecated.
This class is not used in any API, and will be removed in a future major version.
GeneratedVaadinComboBox.InvalidChangeEvent<R extends ComboBoxBase<R,​?,​?>> - Class in com.vaadin.flow.component.combobox
Deprecated.
This class is not used in any API, and will be removed in a future major version.
GeneratedVaadinComboBox.OpenedChangeEvent<TComponent extends ComboBoxBase<TComponent,​?,​?>> - Class in com.vaadin.flow.component.combobox
Deprecated.
This class is not used in any API, and will be removed in a future major version.
GeneratedVaadinComboBox.SelectedItemChangeEvent<TComponent extends ComboBoxBase<TComponent,​?,​?>> - Class in com.vaadin.flow.component.combobox
Deprecated.
This class is not used in any API, and will be removed in a future major version.
generateLabel(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Generates a string label for a data item using the current item label generator
getAutoExpand() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Gets the behavior of the component when not all selected items can be displayed as chips within the current field width.
getCleared() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
The text that is announced by screen readers when the clear button is clicked.
getDataCommunicator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Accesses the data communicator that is managed by the data controller
getDataController() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Accesses the data controller that is managing data communication with the web component
getDataGenerator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Accesses the data generator that is managed by the data controller
getDataProvider() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Gets the data provider used by this ComboBox.
getDeselected() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
The text that is announced by screen readers when an item is removed from the selection.
getDetail() - Method in class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.CustomValueSetEvent
Deprecated.
 
getEmptyValue() - Method in class com.vaadin.flow.component.combobox.ComboBox
 
getErrorMessage() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
The error message that should be displayed when the component becomes invalid
getExpandHorizontally() - Method in enum com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Gets whether to expand horizontally.
getExpandVertically() - Method in enum com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Gets whether to expand vertically.
getFilter() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Filtering string the user has typed into the input field.
getFilter() - Method in class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.FilterChangeEvent
Deprecated.
 
getFocused() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
The text that is announced by screen readers when a chip is focused.
getGenericDataView() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Gets the generic data view for the ComboBox.
getI18n() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Gets the internationalization object previously set for this component.
getItem(int) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
Gets the item at the given index from the data available in the ComboBox's server-side.
getItem(int) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
Gets the item at the given index from the data available in the ComboBox's server-side.
getItemCount() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
getItemLabelGenerator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Gets the item label generator that is used to produce the strings shown in the combo box for each item.
getItems() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
Gets the items available on the ComboBox's server-side.
getItems() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
Gets the items available on the ComboBox's server-side.
getItems() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
Gets the items available on the ComboBox's server-side.
getKeyMapper() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Accesses the key mapper that is managed by the data controller
getLazyDataView() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Gets the lazy data view for the ComboBox.
getListDataView() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Gets the list data view for the ComboBox.
getPageSize() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Gets the page size, which is the number of items fetched at a time from the data provider.
getPattern() - Method in class com.vaadin.flow.component.combobox.ComboBox
The pattern to validate the input with
getPlaceholder() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
The placeholder text that should be displayed in the input element, when the user has not entered a value
getRenderManager() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Accesses the render manager that is managing the custom renderer
getSelected() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
The text that is announced by screen readers when an item is added to the selection.
getSelectedItem() - Method in class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.SelectedItemChangeEvent
Deprecated.
 
getSelectedItems() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
 
getSupportedDataProviderType() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
 
getTotal() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
The text that is announced by screen readers to inform about the total number of selected items.
getValue() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Gets the value of the component, which is a set of selected items.
getVariantName() - Method in enum com.vaadin.flow.component.combobox.ComboBoxVariant
Gets the variant name.
getVariantName() - Method in enum com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
Gets the variant name.

H

HORIZONTAL - com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Field expands horizontally until max-width is reached, then collapses to overflow chip.

I

InvalidChangeEvent(R, boolean) - Constructor for class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.InvalidChangeEvent
Deprecated.
 
isAllowCustomValue() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
If true, the user can input string values that do not match to any existing item labels, which will fire a ComboBoxBase.CustomValueSetEvent.
isAutofocus() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Whether the component should automatically receive focus when the page loads.
isAutoOpen() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Gets whether dropdown will open automatically or not.
isInvalid() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Whether the component has an invalid value or not.
isInvalid() - Method in class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.InvalidChangeEvent
Deprecated.
 
isKeepFilter() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Gets whether the filter is kept after selecting items.
isOpened() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Whether the dropdown is opened or not.
isOpened() - Method in class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.OpenedChangeEvent
Deprecated.
 
isPreventInvalidInput() - Method in class com.vaadin.flow.component.combobox.ComboBox
Deprecated.
Since 23.2, this API is deprecated.
isRequired() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets whether the component requires a value to be considered in a valid state.
isSelected(T) - Method in class com.vaadin.flow.component.combobox.ComboBox
 
isSelected(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Whether the item is currently selected in the combo box.
isSelected(TItem) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
 
isSelectedItemsOnTop() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Gets whether selected items are grouped at the top of the overlay.

K

key(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
 

L

LUMO_ALIGN_CENTER - com.vaadin.flow.component.combobox.ComboBoxVariant
 
LUMO_ALIGN_CENTER - com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
 
LUMO_ALIGN_LEFT - com.vaadin.flow.component.combobox.ComboBoxVariant
 
LUMO_ALIGN_LEFT - com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
 
LUMO_ALIGN_RIGHT - com.vaadin.flow.component.combobox.ComboBoxVariant
 
LUMO_ALIGN_RIGHT - com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
 
LUMO_HELPER_ABOVE_FIELD - com.vaadin.flow.component.combobox.ComboBoxVariant
 
LUMO_HELPER_ABOVE_FIELD - com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
 
LUMO_SMALL - com.vaadin.flow.component.combobox.ComboBoxVariant
 
LUMO_SMALL - com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
 

M

MATERIAL_ALWAYS_FLOAT_LABEL - com.vaadin.flow.component.combobox.ComboBoxVariant
 
MATERIAL_ALWAYS_FLOAT_LABEL - com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
 
MultiSelectComboBox<TItem> - Class in com.vaadin.flow.component.combobox
MultiSelectComboBox allows the user to select one or more values from a filterable list of options presented in an overlay.
MultiSelectComboBox() - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Default constructor.
MultiSelectComboBox(int) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Creates an empty combo box with the defined page size for lazy loading.
MultiSelectComboBox(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>>) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Constructs a combo box with a value change listener.
MultiSelectComboBox(String) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Creates an empty combo box with the defined label.
MultiSelectComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>>) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Constructs a combo box with the defined label and a value change listener.
MultiSelectComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>>, TItem...) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Constructs a combo box with the defined label, a value change listener and populated with the items in the array.
MultiSelectComboBox(String, Collection<TItem>) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Creates a combo box with the defined label and populated with the items in the collection.
MultiSelectComboBox(String, TItem...) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
Creates a combo box with the defined label and populated with the items in the array.
MultiSelectComboBox.AutoExpandMode - Enum in com.vaadin.flow.component.combobox
Defines possible behavior of the component when not all selected items can be displayed as chips within the current field width.
MultiSelectComboBoxI18n - Class in com.vaadin.flow.component.combobox
Class for localization of the MultiSelectComboBox
MultiSelectComboBoxI18n() - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
 
MultiSelectComboBoxVariant - Enum in com.vaadin.flow.component.combobox
Set of theme variants applicable for vaadin-multi-select-combo-box component.

N

NONE - com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Field does not expand and collapses to overflow chip.
notifySelectionChanged() - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator
 

O

onAttach(AttachEvent) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 
onAttach(AttachEvent) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
 
onDetach(DetachEvent) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 
OpenedChangeEvent(TComponent, boolean) - Constructor for class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.OpenedChangeEvent
Deprecated.
 

P

purgeItems() - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
 

R

refreshValue() - Method in class com.vaadin.flow.component.combobox.ComboBox
 
refreshValue() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Refresh value / selection of the web component after changes that might affect the presentation / rendering of items
refreshValue() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
 
remove(Component...) - Method in class com.vaadin.flow.component.combobox.ComboBox
Deprecated.
since v23.3
remove(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
 
removeAll() - Method in class com.vaadin.flow.component.combobox.ComboBox
Deprecated.
since v23.3
removeFilters() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
Removes all in-memory filters set or added.
removeThemeVariants(ComboBoxVariant...) - Method in class com.vaadin.flow.component.combobox.ComboBox
 
runBeforeClientResponse(SerializableConsumer<UI>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Helper for running a command in the before client response hook

S

SelectedItemChangeEvent(TComponent, boolean) - Constructor for class com.vaadin.flow.component.combobox.GeneratedVaadinComboBox.SelectedItemChangeEvent
Deprecated.
 
SelectionPreservingKeyMapper(ComboBoxBase<?, TItem, ?>) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
 
setAllowCustomValue(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Enables or disables the component firing events for custom string input.
setAutoExpand(MultiSelectComboBox.AutoExpandMode) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Sets the behavior of the component when not all selected items can be displayed as chips within the current field width.
setAutofocus(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the whether the component should automatically receive focus when the page loads.
setAutoOpen(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Enables or disables the dropdown opening automatically.
setCleared(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
Sets the text that is announced by screen readers when the clear button is clicked.
setDataProvider(ComboBox.FetchItemsCallback<TItem>, SerializableFunction<String, Integer>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
setDataProvider(ComboBox.ItemFilter<TItem>, ListDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
setDataProvider(DataProvider<TItem, C>, SerializableFunction<String, C>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Deprecated.
use instead one of the setItems methods which provide access to either ComboBoxListDataView or ComboBoxLazyDataView
setDataProvider(DataProvider<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Deprecated.
use instead one of the setItems methods which provide access to either ComboBoxListDataView or ComboBoxLazyDataView
setDataProvider(ListDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Deprecated.
use instead one of the setItems methods which provide access to ComboBoxListDataView
setDeselected(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
Sets the text that is announced by screen readers when an item is removed from the selection.
setErrorMessage(String) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the error message that should be displayed when the component becomes invalid
setFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
Sets a filter to be applied to the data.
setFilter(String) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the filter string for the filter input.
setFocused(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
Sets the text that is announced by screen readers when a chip is focused.
setI18n(MultiSelectComboBoxI18n) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Sets the internationalization properties for this component.
setIdentifierProvider(IdentifierProvider<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
 
setIdentifierProvider(IdentifierProvider<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
 
setInvalid(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets whether the component has an invalid value or not.
setItemCountCallback(CallbackDataProvider.CountCallback<T, String>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
Sets a callback that the combo box uses to get the exact item count in the backend.
setItemCountEstimate(int) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
setItemCountFromDataProvider() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
setItemCountUnknown() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
setItemLabelGenerator(ItemLabelGenerator<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the item label generator that is used to produce the strings shown in the combo box for each item.
setItems(ComboBox.ItemFilter<TItem>, ListDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets a ListDataProvider for this combo box and a filtering function for defining which items are displayed when user types into the combo box.
setItems(ComboBox.ItemFilter<TItem>, Collection<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the data items of this combo box and a filtering function for defining which items are displayed when user types into the combo box.
setItems(ComboBox.ItemFilter<TItem>, TItem...) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the data items of this combo box and a filtering function for defining which items are displayed when user types into the combo box.
setItems(BackEndDataProvider<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 
setItems(CallbackDataProvider.FetchCallback<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Supply items lazily with a callback from a backend.
setItems(CallbackDataProvider.FetchCallback<TItem, String>, CallbackDataProvider.CountCallback<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Supply items lazily with callbacks: the first one fetches the items based on offset, limit and an optional filter, the second provides the exact count of items in the backend.
setItems(DataProvider<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 
setItems(InMemoryDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Deprecated.
does not work so don't use
setItems(InMemoryDataProvider<TItem>, SerializableFunction<String, SerializablePredicate<TItem>>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets an in-memory data provider for the combo box to use, taking into account both in-memory filtering from data provider and combo box's text filter.
setItems(ListDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 
setItems(Collection<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
setItems(Stream<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Deprecated.
Because the stream is collected to a list anyway, use ComboBoxBase.setItems(Collection) or ComboBoxBase.setItems(CallbackDataProvider.FetchCallback) instead.
setItemsWithFilterConverter(CallbackDataProvider.FetchCallback<TItem, C>, CallbackDataProvider.CountCallback<TItem, C>, SerializableFunction<String, C>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Supply items lazily with callbacks: the first one fetches the items based on offset, limit and an optional filter, the second provides the exact count of items in the backend.
setItemsWithFilterConverter(CallbackDataProvider.FetchCallback<TItem, C>, SerializableFunction<String, C>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Supply items lazily with a callback from a backend, using custom filter type.
setKeepFilter(boolean) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Enables or disables keeping the filter after selecting items.
setOpened(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets whether the dropdown should be opened or not.
setPageSize(int) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the page size, which is the number of items requested at a time from the data provider.
setPattern(String) - Method in class com.vaadin.flow.component.combobox.ComboBox
Sets the pattern with which to validate the input
setPlaceholder(String) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the placeholder text that should be displayed in the input element, when the user has not entered a value
setPreventInvalidInput(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBox
Deprecated.
Since 23.2, this API is deprecated in favor of HasAllowedCharPattern.setAllowedCharPattern(String)
setRenderer(Renderer<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Sets the Renderer responsible to render the individual items in the list of possible choices of the ComboBox.
setRequired(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
Whether the component requires a value to be considered in a valid state.
setRequiredIndicatorVisible(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 
setSelected(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
Sets the text that is announced by screen readers when an item is added to the selection.
setSelectedItemsOnTop(boolean) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Enables or disables grouping of the selected items at the top of the overlay.
setTotal(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
Sets the text that is announced by screen readers to inform about the total number of selected items.
setValue(Collection<TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Sets the value of the component, which is a set of selected items.
setValue(Set<TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Sets the value of the component, which is a set of selected items.
setValue(TItem...) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
Sets the value of the component, which is a set of selected items.
setValue(TValue) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 

T

test(T, String) - Method in interface com.vaadin.flow.component.combobox.ComboBox.ItemFilter
 

U

updateSelection(Set<TItem>, Set<TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
 

V

validate() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
 
valueOf(String) - Static method in enum com.vaadin.flow.component.combobox.ComboBoxVariant
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.vaadin.flow.component.combobox.ComboBoxVariant
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
Returns an array containing the constants of this enum type, in the order they are declared.
VERTICAL - com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
Field expands vertically and chips wrap.
A B C F G H I K L M N O P R S T U V 
All Classes All Packages