Class ConverterFacade<T>
java.lang.Object
org.apache.commons.beanutils2.converters.ConverterFacade<T>
- Type Parameters:
- T- The converter type.
- All Implemented Interfaces:
- Converter<T>
 Provides a facade for Converter implementations preventing access to any public API in the implementation, other than that specified by
 Converter.
 
 This implementation can be used to prevent registered Converter implementations that provide configuration options from being retrieved and modified.
 
- Since:
- 1.8.0
- 
Constructor SummaryConstructorsConstructorDescriptionConverterFacade(Converter<T> converter) Constructs a converter which delegates to the specifiedConverterimplementation.
- 
Method Summary
- 
Constructor Details- 
ConverterFacadeConstructs a converter which delegates to the specifiedConverterimplementation.- Parameters:
- converter- The converter to delegate to
 
 
- 
- 
Method Details