Class | Description |
---|---|
GenericEnumConverter |
The
omnifaces.GenericEnumConverter is intended for use in UISelectMany components whose value is
been bound to a List<E> property where E is an enum. |
ImplicitNumberConverter |
This converter won't output the percent or currency symbols, that's up to the UI.
|
ListConverter |
The
omnifaces.ListConverter is intented for use in specialized selection components which doesn't
use SelectItem s as the source for their selectable items, but work directly via a List of entities,
and therefore the SelectItemsConverter isn't usable on them. |
ListIndexConverter |
The
omnifaces.ListIndexConverter is a variant of the ListConverter which automatically converts
based on the position (index) of the selected item in the list instead of the Object.toString() of the selected
item. |
SelectItemsConverter |
The
omnifaces.SelectItemsConverter allows you to populate a selection component with complex Java
model objects (entities) as value of <f:selectItems> and have JSF 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 |
The
omnifaces.SelectItemsIndexConverter is a variant of the SelectItemsConverter which
automatically converts based on the position (index) of the selected item in the list instead of the
Object.toString() of the selected item. |
ToCollectionConverter |
The
omnifaces.ToCollectionConverter is intented to convert submitted String values to a Java
collection based on a delimiter. |
ToLowerCaseConverter | |
ToUpperCaseConverter | |
TrimConverter |
The
omnifaces.TrimConverter is intented to trim any whitespace from submitted String values. |
ValueChangeConverter<T> |
By default, JSF converters run on every request, regardless of whether the submitted value has changed or not.
|
Copyright © 2012–2020 OmniFaces. All rights reserved.