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

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

Introduction

In this page you can find the example usage for org.apache.commons.beanutils.converters DoubleConverter 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.DoubleCalculator.java

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