Uses of Class
jakarta.faces.model.SelectItem
-
Packages that use SelectItem Package Description jakarta.faces.model org.apache.myfaces.core.api.shared -
-
Uses of SelectItem in jakarta.faces.model
Subclasses of SelectItem in jakarta.faces.model Modifier and Type Class Description class
SelectItemGroup
see Javadoc of JSF SpecificationMethods in jakarta.faces.model that return SelectItem Modifier and Type Method Description SelectItem[]
SelectItemGroup. getSelectItems()
Methods in jakarta.faces.model with parameters of type SelectItem Modifier and Type Method Description void
SelectItemGroup. setSelectItems(SelectItem... selectItems)
Method parameters in jakarta.faces.model with type arguments of type SelectItem Modifier and Type Method Description void
SelectItemGroup. setSelectItems(Collection<? extends SelectItem> selectItems)
Constructors in jakarta.faces.model with parameters of type SelectItem Constructor Description SelectItemGroup(String label, String description, boolean disabled, SelectItem... selectItems)
Constructor parameters in jakarta.faces.model with type arguments of type SelectItem Constructor Description SelectItemGroup(String label, String description, boolean disabled, Collection<? extends SelectItem> selectItems)
-
Uses of SelectItem in org.apache.myfaces.core.api.shared
Methods in org.apache.myfaces.core.api.shared with type parameters of type SelectItem Modifier and Type Method Description static <S extends SelectItem>
SSelectItemsUtil. createSelectItem(UIComponent component, Object value, Supplier<S> supplier)
static <S extends SelectItem>
SSelectItemsUtil. createSelectItem(UISelectItem uiSelectItem, Supplier<S> supplier)
static <S extends SelectItem>
voidSelectItemsUtil. createSelectItems(FacesContext context, UISelectItems component, Object values, Supplier<S> supplier, Consumer<S> callback)
Methods in org.apache.myfaces.core.api.shared that return SelectItem Modifier and Type Method Description SelectItem
SelectItemsIterator. next()
Methods in org.apache.myfaces.core.api.shared that return types with arguments of type SelectItem Modifier and Type Method Description static List<SelectItem>
SelectItemsUtil. collectSelectItems(FacesContext context, UIComponent component)
Method parameters in org.apache.myfaces.core.api.shared with type arguments of type SelectItem Modifier and Type Method Description static Converter
SharedRendererUtils. getSelectItemsValueConverter(Iterator<SelectItem> iterator, FacesContext facesContext)
Iterates through the SelectItems with the given Iterator and tries to obtain a by-class-converter based on the Class of SelectItem.getValue().static boolean
SelectItemsUtil. isNoSelectionOption(FacesContext context, UIComponent uiComponent, Object value, Iterator<SelectItem> iterator, Converter converter)
static boolean
SelectItemsUtil. matchValue(FacesContext context, UIComponent uiComponent, Object value, Iterator<SelectItem> iterator, Converter converter)
-