Uses of Interface
com.vaadin.flow.component.ItemLabelGenerator
-
Uses of ItemLabelGenerator in com.vaadin.flow.component.checkbox
Methods in com.vaadin.flow.component.checkbox that return ItemLabelGeneratorModifier and TypeMethodDescriptionCheckboxGroup.getItemLabelGenerator()
Gets the item label generator that is used to produce the strings shown in the checkbox group for each item.
Methods in com.vaadin.flow.component.checkbox with parameters of type ItemLabelGeneratorModifier and TypeMethodDescriptionvoid
CheckboxGroup.setItemLabelGenerator
(ItemLabelGenerator<T> itemLabelGenerator) Sets the item label generator that is used to produce the strings shown in the checkbox group for each item.
-
Uses of ItemLabelGenerator in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox that return ItemLabelGeneratorModifier and TypeMethodDescriptionComboBoxBase.getItemLabelGenerator()
Gets the item label generator that is used to produce the strings shown in the combo box for each item.
Methods in com.vaadin.flow.component.combobox with parameters of type ItemLabelGeneratorModifier and TypeMethodDescriptionvoid
ComboBoxBase.setItemLabelGenerator
(ItemLabelGenerator<TItem> itemLabelGenerator) Sets the item label generator that is used to produce the strings shown in the combo box for each item.
-
Uses of ItemLabelGenerator in com.vaadin.flow.component.listbox
Methods in com.vaadin.flow.component.listbox that return ItemLabelGeneratorModifier and TypeMethodDescriptionListBoxBase.getItemLabelGenerator()
Gets the item label generator that is used to produce the strings shown in the ListBox for each item.
Methods in com.vaadin.flow.component.listbox with parameters of type ItemLabelGeneratorModifier and TypeMethodDescriptionvoid
ListBoxBase.setItemLabelGenerator
(ItemLabelGenerator<ITEM> itemLabelGenerator) Sets the item label generator that is used to produce the strings shown in the ListBox for each item.
-
Uses of ItemLabelGenerator in com.vaadin.flow.component.radiobutton
Methods in com.vaadin.flow.component.radiobutton that return ItemLabelGeneratorModifier and TypeMethodDescriptionRadioButtonGroup.getItemLabelGenerator()
Gets the item label generator that is used to produce the strings shown in the radio button group for each item.
Methods in com.vaadin.flow.component.radiobutton with parameters of type ItemLabelGeneratorModifier and TypeMethodDescriptionvoid
RadioButtonGroup.setItemLabelGenerator
(ItemLabelGenerator<T> itemLabelGenerator) Sets the item label generator that is used to produce the strings shown in the radio button group for each item.
-
Uses of ItemLabelGenerator in com.vaadin.flow.component.select
Methods in com.vaadin.flow.component.select that return ItemLabelGeneratorMethods in com.vaadin.flow.component.select with parameters of type ItemLabelGeneratorModifier and TypeMethodDescriptionvoid
Select.setItemLabelGenerator
(ItemLabelGenerator<T> itemLabelGenerator) Sets the item label generator.
void
Select.setTextRenderer
(ItemLabelGenerator<T> itemLabelGenerator) Convenience setter for creating a
TextRenderer
from the given function that converts the item to a string. -
Uses of ItemLabelGenerator in com.vaadin.flow.data.renderer
Constructors in com.vaadin.flow.data.renderer with parameters of type ItemLabelGeneratorModifierConstructorDescriptionIconRenderer
(SerializableFunction<ITEM, ? extends Component> iconGenerator, ItemLabelGenerator<ITEM> itemLabelGenerator) Creates a new renderer instance using the provided
iconGenerator
anditemLabelGenerator
.TextRenderer
(ItemLabelGenerator<ITEM> itemLabelGenerator) Creates a new renderer instance using the provided
itemLabelGenerator
.