Uses of Class
jakarta.faces.model.SelectItem
Packages that use SelectItem
Package
Description
-
Uses of SelectItem in com.sun.faces.renderkit
Classes in com.sun.faces.renderkit with type parameters of type SelectItemModifier and TypeClassDescriptionfinal classSelectItemsIterator<T extends SelectItem>Package private class for iterating over the set ofSelectItems for a parentUISelectManyorUISelectOne.Methods in com.sun.faces.renderkit that return SelectItemModifier and TypeMethodDescriptionSelectItemsIterator.next()Return the next element in the iteration.Methods in com.sun.faces.renderkit that return types with arguments of type SelectItemModifier and TypeMethodDescriptionstatic SelectItemsIterator<SelectItem> RenderKitUtils.getSelectItems(FacesContext context, UIComponent component) Return a List ofSelectIteminstances representing the available options for this component, assembled from the set ofUISelectItemand/orUISelectItemscomponents that are direct children of this component. -
Uses of SelectItem in com.sun.faces.renderkit.html_basic
Methods in com.sun.faces.renderkit.html_basic with parameters of type SelectItemModifier and TypeMethodDescriptionprotected voidRadioRenderer.renderLabel(ResponseWriter writer, UIComponent component, String forClientId, SelectItem curItem, HtmlBasicRenderer.OptionComponentInfo optionInfo) protected booleanMenuRenderer.renderOption(FacesContext context, UIComponent component, UIComponent selectComponent, Converter<?> converter, SelectItem curItem, Object currentSelections, Object[] submittedValues, HtmlBasicRenderer.OptionComponentInfo optionInfo) protected voidRadioRenderer.renderOption(FacesContext context, UIComponent component, Converter converter, SelectItem curItem, Object currentSelections, Object[] submittedValues, Boolean newTableRow, int itemNumber, HtmlBasicRenderer.OptionComponentInfo optionInfo) protected voidSelectManyCheckboxListRenderer.renderOption(FacesContext context, UIComponent component, Converter converter, SelectItem curItem, Object currentSelections, Object[] submittedValues, Boolean newTableRow, int itemNumber, HtmlBasicRenderer.OptionComponentInfo optionInfo) Method parameters in com.sun.faces.renderkit.html_basic with type arguments of type SelectItemModifier and TypeMethodDescriptionprotected intMenuRenderer.renderOptions(FacesContext context, UIComponent component, SelectItemsIterator<SelectItem> items) -
Uses of SelectItem in com.sun.faces.util
Methods in com.sun.faces.util with type parameters of type SelectItemModifier and TypeMethodDescriptionstatic <T extends SelectItem>
Iterator<T> CollectionsUtils.asIterator(T[] items) static <S extends SelectItem>
SSelectItemUtils.createSelectItem(UIComponent component, Object value, Supplier<S> supplier) static <S extends SelectItem>
voidSelectItemUtils.createSelectItems(FacesContext context, UIComponent component, Object values, Supplier<S> supplier, Consumer<S> callback) Methods in com.sun.faces.util that return types with arguments of type SelectItemModifier and TypeMethodDescriptionstatic List<SelectItem> SelectItemUtils.collectSelectItems(FacesContext context, UIComponent component) Methods in com.sun.faces.util with parameters of type SelectItemModifier and TypeMethodDescriptionstatic <T extends SelectItem>
Iterator<T> CollectionsUtils.asIterator(T[] items) -
Uses of SelectItem in jakarta.faces.model
Subclasses of SelectItem in jakarta.faces.modelModifier and TypeClassDescriptionclassSelectItemGroup is a subclass ofSelectItemthat identifies a set of options that will be made available as a subordinate "submenu" or "options list", depending upon the requirements of theUISelectManyorUISelectOnerenderer that is actually used.Methods in jakarta.faces.model that return SelectItemModifier and TypeMethodDescriptionSelectItemGroup.getSelectItems()Return the set of subordinateSelectItems for this group.Methods in jakarta.faces.model with parameters of type SelectItemModifier and TypeMethodDescriptionvoidSelectItemGroup.setSelectItems(SelectItem... selectItems) Set the set of subordinateSelectItems for this group as a variable array.Method parameters in jakarta.faces.model with type arguments of type SelectItemModifier and TypeMethodDescriptionvoidSelectItemGroup.setSelectItems(Collection<? extends SelectItem> selectItems) Set the set of subordinateSelectItems for this group as a collection.Constructors in jakarta.faces.model with parameters of type SelectItemModifierConstructorDescriptionSelectItemGroup(String label, String description, boolean disabled, SelectItem... selectItems) Construct aSelectItemGroupwith the specified properties.Constructor parameters in jakarta.faces.model with type arguments of type SelectItemModifierConstructorDescriptionSelectItemGroup(String label, String description, boolean disabled, Collection<? extends SelectItem> selectItems) Construct aSelectItemGroupwith the specified properties.