Uses of Class
jakarta.faces.model.SelectItem
| Package | Description |
|---|---|
| com.sun.faces.renderkit | |
| com.sun.faces.renderkit.html_basic | |
| jakarta.faces.model |
-
Uses of SelectItem in com.sun.faces.renderkit
Classes in com.sun.faces.renderkit with type parameters of type SelectItem Modifier and Type Class Description classSelectItemsIterator<T extends SelectItem>Package private class for iterating over the set ofSelectItems for a parentUISelectManyorUISelectOne.Methods in com.sun.faces.renderkit that return SelectItem Modifier and Type Method Description SelectItemSelectItemsIterator. next()Return the next element in the iteration.Methods in com.sun.faces.renderkit that return types with arguments of type SelectItem Modifier and Type Method Description static 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 SelectItem Modifier and Type Method Description protected 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 alignVertical, int itemNumber, HtmlBasicRenderer.OptionComponentInfo optionInfo)protected voidSelectManyCheckboxListRenderer. renderOption(FacesContext context, UIComponent component, Converter converter, SelectItem curItem, Object currentSelections, Object[] submittedValues, boolean alignVertical, int itemNumber, HtmlBasicRenderer.OptionComponentInfo optionInfo)Method parameters in com.sun.faces.renderkit.html_basic with type arguments of type SelectItem Modifier and Type Method Description protected intMenuRenderer. renderOptions(FacesContext context, UIComponent component, SelectItemsIterator<SelectItem> items) -
Uses of SelectItem in jakarta.faces.model
Subclasses of SelectItem in jakarta.faces.model Modifier and Type Class Description classSelectItemGroupSelectItemGroup 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 SelectItem Modifier and Type Method Description SelectItem[]SelectItemGroup. getSelectItems()Return the set of subordinateSelectItems for this group.Methods in jakarta.faces.model with parameters of type SelectItem Modifier and Type Method Description voidSelectItemGroup. setSelectItems(SelectItem[] selectItems)Set the set of subordinateSelectItems for this group.Constructors in jakarta.faces.model with parameters of type SelectItem Constructor Description SelectItemGroup(String label, String description, boolean disabled, SelectItem[] selectItems)Construct aSelectItemGroupwith the specified properties.