Uses of Interface
com.vaadin.flow.component.ItemLabelGenerator
Packages that use ItemLabelGenerator
Package
Description
-
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 TypeMethodDescriptionvoidCheckboxGroup.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 TypeMethodDescriptionvoidComboBoxBase.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 TypeMethodDescriptionvoidListBoxBase.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 TypeMethodDescriptionvoidRadioButtonGroup.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 TypeMethodDescriptionvoidSelect.setItemLabelGenerator(ItemLabelGenerator<T> itemLabelGenerator) Sets the item label generator.voidSelect.setTextRenderer(ItemLabelGenerator<T> itemLabelGenerator) Convenience setter for creating aTextRendererfrom 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 providediconGeneratoranditemLabelGenerator.TextRenderer(ItemLabelGenerator<ITEM> itemLabelGenerator) Creates a new renderer instance using the provideditemLabelGenerator.