Module org.omnifaces
Package org.omnifaces.converter
-
Class Summary Class Description GenericEnumConverter Theomnifaces.GenericEnumConverter
is intended for use inUISelectMany
components whose value is been bound to aList<E>
property whereE
is an enum.ImplicitNumberConverter This converter won't output the percent or currency symbols, that's up to the UI.ListConverter Theomnifaces.ListConverter
is intented for use in specialized selection components which doesn't useSelectItem
s as the source for their selectable items, but work directly via aList
of entities, and therefore theSelectItemsConverter
isn't usable on them.ListIndexConverter Theomnifaces.ListIndexConverter
is a variant of theListConverter
which automatically converts based on the position (index) of the selected item in the list instead of theObject.toString()
of the selected item.SelectItemsConverter Theomnifaces.SelectItemsConverter
allows you to populate a selection component with complex Java model objects (entities) as value of<f:selectItems>
and have Faces convert those automatically back without the need to provide a custom converter which may need to do the job based on possibly expensive service/DAO operations.SelectItemsIndexConverter Theomnifaces.SelectItemsIndexConverter
is a variant of theSelectItemsConverter
which automatically converts based on the position (index) of the selected item in the list instead of theObject.toString()
of the selected item.ToCollectionConverter Theomnifaces.ToCollectionConverter
is intented to convert submittedString
values to a Java collection based on a delimiter.ToLowerCaseConverter ToUpperCaseConverter TrimConverter Theomnifaces.TrimConverter
is intented to trim any whitespace from submittedString
values.ValueChangeConverter<T> By default, Faces converters run on every request, regardless of whether the submitted value has changed or not.