- java.lang.Object
- 
- org.omnifaces.converter.TrimConverter
- 
- org.omnifaces.converter.ToUpperCaseConverter
 
 
- 
 public class ToUpperCaseConverter extends TrimConverter The omnifaces.ToUpperCaseConverteris intented to convert submittedStringvalues to upper case based on currentLocale. Additionally, it trims any whitespace from the submitted value. This is useful for among others zip code inputs.This converter does by design no conversion in getAsString().UsageThis converter is available by converter ID omnifaces.ToUpperCaseConverter. Just specify it in theconverterattribute of the component referring theStringproperty. For example:<h:inputText value="#{bean.zipCode}" converter="omnifaces.ToUpperCaseConverter" />- Since:
- 2.6
- Author:
- Bauke Scholtz
- See Also:
- TrimConverter
 
- 
- 
Field Summary- 
Fields inherited from interface jakarta.faces.convert.ConverterDATETIMECONVERTER_DEFAULT_TIMEZONE_IS_SYSTEM_TIMEZONE_PARAM_NAME
 
- 
 - 
Constructor SummaryConstructors Constructor Description ToUpperCaseConverter()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAsObject(FacesContext context, UIComponent component, String submittedValue)- 
Methods inherited from class org.omnifaces.converter.TrimConvertergetAsString
 
- 
 
- 
- 
- 
Method Detail- 
getAsObjectpublic String getAsObject(FacesContext context, UIComponent component, String submittedValue) - Specified by:
- getAsObjectin interface- Converter<String>
- Overrides:
- getAsObjectin class- TrimConverter
 
 
- 
 
-