- java.lang.Object
-
- jakarta.faces.model.SelectItem
-
- org.omnifaces.model.ExtendedSelectItem
-
- All Implemented Interfaces:
Serializable
public class ExtendedSelectItem extends SelectItem
This class extends the defaultSelectItem
with several convenience methods.- Author:
- Arjan Tijms
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExtendedSelectItem()
Construct aSelectItem
with no initialized property values.ExtendedSelectItem(UISelectItem uiSelectItem)
Construct aSelectItem
with property values initialized from the corresponding properties on theUISelectItem
.
-
Method Summary
-
Methods inherited from class jakarta.faces.model.SelectItem
getDescription, getLabel, getValue, isDisabled, isEscape, isNoSelectionOption, setDescription, setDisabled, setEscape, setLabel, setNoSelectionOption, setValue
-
-
-
-
Constructor Detail
-
ExtendedSelectItem
public ExtendedSelectItem()
Construct a
SelectItem
with no initialized property values.
-
ExtendedSelectItem
public ExtendedSelectItem(UISelectItem uiSelectItem)
Construct a
SelectItem
with property values initialized from the corresponding properties on theUISelectItem
.- Parameters:
uiSelectItem
- The UI select item.
-
-