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

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

Introduction

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

The text is from its open source code.

Subclass

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

Constructor

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).

For more details see ConvertUtilsBean.

Stringconvert(Object value)

Convert the specified value into a String.

For more details see ConvertUtilsBean.

voidderegister(Class clazz)

Remove any registered Converter for the specified destination Class.

For more details see ConvertUtilsBean.

voidderegister()

Remove all registered Converter s, and re-establish the standard Converters.

For more details see ConvertUtilsBean.

Converterlookup(Class clazz)

Look up and return any registered Converter for the specified destination class; if there is no registered Converter, return null.

For more details see ConvertUtilsBean.

voidregister(Converter converter, Class clazz)

Register a custom Converter for the specified destination Class, replacing any previously registered Converter.

For more details see ConvertUtilsBean.