public interface ConverterProvider
OmniApplication
Modifier and Type | Method and Description |
---|---|
Converter |
createConverter(Application application,
Class<?> converterForClass)
Returns the converter instance associated with the given converter for-class,
or
null if there is none. |
Converter |
createConverter(Application application,
String converterId)
Returns the converter instance associated with the given converter ID,
or
null if there is none. |
Converter createConverter(Application application, String converterId)
null
if there is none.application
- The involved JSF application.converterId
- The converter ID of the desired converter instance.null
if there is none.Converter createConverter(Application application, Class<?> converterForClass)
null
if there is none.application
- The involved JSF application.converterForClass
- The converter for-class of the desired converter instance.null
if there is none.