Example usage for org.apache.commons.beanutils.converters FloatConverter convert

List of usage examples for org.apache.commons.beanutils.converters FloatConverter convert

Introduction

In this page you can find the example usage for org.apache.commons.beanutils.converters FloatConverter convert.

Prototype

public Object convert(Class type, Object value) 

Source Link

Document

Convert the specified input object into an output object of the specified type.

Usage

From source file:jp.co.acroquest.endosnipe.report.converter.util.calc.FloatCalculator.java

public Object immediate(String str) {
    FloatConverter converter = new FloatConverter();
    return converter.convert(Long.class, str);
}