Register a new mapping of converter id to the name of the corresponding {@link Converter} class. This allows subsequent callsto createConverter() to serve as a factory for {@link Converter} instances.
@param converterId The converter id to be registered
@param converterClass The fully qualified class name of thecorresponding {@link Converter} implementation
@throws NullPointerException if converterIdor converterClass is null
Add a new converter based on a match string
@param match The class name(s) to match
@param type The name of the converter type
@param params The extra parameters to allow the creator to configure itself
@throws InstantiationException If reflection based creation fails
@throws IllegalAccessException If reflection based creation fails
@throws IllegalArgumentException If we have a duplicate name
Add a plain converter to this registry. The convertible sourceType/targetType pair is derived from the Converter's parameterized types.
@throws IllegalArgumentException if the parameterized types could not be resolved
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.