Java org.apache.commons.beanutils ConvertUtilsBean fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.beanutils ConvertUtilsBean fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.beanutils ConvertUtilsBean.

The text is from its open source code.

Subclass

org.apache.commons.beanutils.ConvertUtilsBean has subclasses.
Click this link to see all its subclasses.

Constructor

ConvertUtilsBean()
Construct a bean with standard converters registered

Method

Objectconvert(String value, Class clazz)
Convert the specified value to an object of the specified class (if possible).
Objectconvert(String values[], Class clazz)
Convert an array of specified values to an array of objects of the specified class (if possible).
Stringconvert(Object value)
Convert the specified value into a String.
voidderegister(Class clazz)
Remove any registered Converter for the specified destination Class.
voidregister(Class clazz, Converter converter)
strictly for convenience since it has same parameter order as Map.put
voidregister(Converter converter, Class clazz)
Register a custom Converter for the specified destination Class, replacing any previously registered Converter.