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 ItemLabelGenerator Modifier and Type Method Description ItemLabelGenerator<T>CheckboxGroup. 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 ItemLabelGenerator Modifier and Type Method Description voidCheckboxGroup. 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 ItemLabelGenerator Modifier and Type Method Description ItemLabelGenerator<TItem>ComboBoxBase. 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 ItemLabelGenerator Modifier and Type Method Description voidComboBoxBase. 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 ItemLabelGenerator Modifier and Type Method Description ItemLabelGenerator<ITEM>ListBoxBase. 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 ItemLabelGenerator Modifier and Type Method Description voidListBoxBase. 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 ItemLabelGenerator Modifier and Type Method Description ItemLabelGenerator<T>RadioButtonGroup. 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 ItemLabelGenerator Modifier and Type Method Description voidRadioButtonGroup. 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 ItemLabelGenerator Modifier and Type Method Description ItemLabelGenerator<T>Select. getItemLabelGenerator()Gets the item label generator.Methods in com.vaadin.flow.component.select with parameters of type ItemLabelGenerator Modifier and Type Method Description voidSelect. 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 ItemLabelGenerator Constructor Description IconRenderer(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.
-